Searched refs:rpc_stat (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12-stable/usr.bin/rpcinfo/ |
| D | rpcinfo.c | 378 enum clnt_stat rpc_stat; local 400 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t) xdr_void, 412 if (rpc_stat == RPC_PROGVERSMISMATCH) { 416 } else if (rpc_stat == RPC_SUCCESS) { 424 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t) xdr_void, 427 if (rpc_stat == RPC_PROGVERSMISMATCH) { 431 } else if (rpc_stat == RPC_SUCCESS) { 452 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t) xdr_void, 625 enum clnt_stat rpc_stat; local 632 rpc_stat = rpc_broadcast(prognum, vers, NULLPROC, [all …]
|
| /freebsd-12-stable/lib/libc/rpc/ |
| D | clnt_generic.c | 104 enum clnt_stat rpc_stat; in clnt_create_vers_timed() local 113 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed() 115 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed() 119 while (rpc_stat == RPC_PROGVERSMISMATCH && vers_high > vers_low) { in clnt_create_vers_timed() 135 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed() 138 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed() 146 rpc_createerr.cf_stat = rpc_stat; in clnt_create_vers_timed()
|