Home
last modified time | relevance | path

Searched refs:rpc_stat (Results 1 – 2 of 2) sorted by relevance

/dragonfly/usr.bin/rpcinfo/
H A Drpcinfo.c370 enum clnt_stat rpc_stat; local
403 if (rpc_stat == RPC_PROGVERSMISMATCH) {
407 } else if (rpc_stat == RPC_SUCCESS) {
421 } else if (rpc_stat == RPC_SUCCESS) {
606 enum clnt_stat rpc_stat; local
616 if ((rpc_stat != RPC_SUCCESS) && (rpc_stat != RPC_TIMEDOUT))
1250 enum clnt_stat rpc_stat; local
1293 } else if (rpc_stat == RPC_SUCCESS) {
1306 } else if (rpc_stat == RPC_SUCCESS) {
1349 enum clnt_stat rpc_stat; local
[all …]
/dragonfly/lib/libc/rpc/
H A Dclnt_generic.c115 enum clnt_stat rpc_stat; in clnt_create_vers_timed() local
124 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed()
126 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed()
130 while (rpc_stat == RPC_PROGVERSMISMATCH && vers_high > vers_low) { in clnt_create_vers_timed()
146 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed()
149 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed()
157 rpc_createerr.cf_stat = rpc_stat; in clnt_create_vers_timed()