Searched refs:clnt_st (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/lib/libnsl/rpc/ |
H A D | rpcb_clnt.c | 640 enum clnt_stat clnt_st; in __rpcb_findaddr_timed() local 747 clnt_st = CLNT_CALL(client, RPCBPROC_GETADDRLIST, in __rpcb_findaddr_timed() 751 switch (clnt_st) { in __rpcb_findaddr_timed() 773 rpc_createerr.cf_stat = clnt_st; in __rpcb_findaddr_timed() 836 clnt_st = CLNT_CALL(client, RPCBPROC_GETADDR, in __rpcb_findaddr_timed() 840 switch (clnt_st) { in __rpcb_findaddr_timed() 869 rpc_createerr.cf_stat = clnt_st; in __rpcb_findaddr_timed() 873 rpc_createerr.cf_stat = clnt_st; in __rpcb_findaddr_timed() 987 clnt_st = CLNT_CALL(client, PMAPPROC_GETPORT, in __rpcb_findaddr_timed() 991 if (clnt_st != RPC_SUCCESS) { in __rpcb_findaddr_timed() [all …]
|
/titanic_41/usr/src/cmd/ypcmd/ |
H A D | rpc_bootstrap.c | 271 enum clnt_stat clnt_st; /* Result from the rpc call */ local 302 clnt_st = clnt_call(client, RPCBPROC_GETADDR, xdr_rpcb, (char *)&parms, 305 rpc_createerr.cf_stat = clnt_st; 306 if (clnt_st == RPC_SUCCESS) { 315 } else if (((clnt_st == RPC_PROGVERSMISMATCH) || 316 (clnt_st == RPC_PROGUNAVAIL) || 317 (clnt_st == RPC_TIMEDOUT)) &&
|
/titanic_41/usr/src/lib/libnsl/nis/gen/ |
H A D | nis_subr.c | 679 enum clnt_stat clnt_st; /* Result from the rpc call */ in __map_addr() local 719 clnt_st = clnt_call(client, RPCBPROC_GETADDR, xdr_rpcb, (char *)&parms, in __map_addr() 722 if (clnt_st == RPC_SUCCESS) { in __map_addr() 731 } else if (((clnt_st == RPC_PROGVERSMISMATCH) || in __map_addr() 732 (clnt_st == RPC_PROGUNAVAIL)) && in __map_addr() 771 if (clnt_st == RPC_TIMEDOUT) in __map_addr() 775 clnt_sperrno(clnt_st)); in __map_addr()
|
/titanic_41/usr/src/cmd/rpcinfo/ |
H A D | rpcinfo.c | 494 enum clnt_stat clnt_st; local 526 clnt_st = CLNT_CALL(client, PMAPPROC_DUMP, (xdrproc_t)xdr_void, 529 if (clnt_st != RPC_SUCCESS) { 530 if ((clnt_st == RPC_PROGVERSMISMATCH) || 531 (clnt_st == RPC_PROGUNAVAIL)) { 719 enum clnt_stat clnt_st; local 760 clnt_st = CLNT_CALL(client, RPCBPROC_DUMP, (xdrproc_t)xdr_void, 763 if (clnt_st != RPC_SUCCESS) { 764 if ((clnt_st == RPC_PROGVERSMISMATCH) || 765 (clnt_st == RPC_PROGUNAVAIL)) { [all …]
|
/titanic_41/usr/src/lib/libnsl/yp/ |
H A D | yp_bind.c | 974 enum clnt_stat clnt_st; in getclnt() local 1048 clnt_st = CLNT_CALL(cl, RPCBPROC_GETADDR, xdr_rpcb, (char *)&parms, in getclnt() 1052 if (clnt_st != RPC_SUCCESS) { in getclnt()
|