Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/rpcinfo/
H A Drpcinfo.c392 enum clnt_stat rpc_stat; local
416 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t)xdr_void,
428 if (rpc_stat == RPC_PROGVERSMISMATCH) {
432 } else if (rpc_stat == RPC_SUCCESS) {
440 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t)xdr_void,
443 if (rpc_stat == RPC_PROGVERSMISMATCH) {
447 } else if (rpc_stat == RPC_SUCCESS) {
468 rpc_stat = CLNT_CALL(client, NULLPROC, (xdrproc_t)xdr_void,
642 enum clnt_stat rpc_stat; local
651 rpc_stat = rpc_broadcast(prognum, vers, NULLPROC,
[all …]
/illumos-gate/usr/src/cmd/ypcmd/
H A Dypwhich.c554 enum clnt_stat rpc_stat; local
575 rpc_stat = clnt_call(client, YPBINDPROC_DOMAIN,
580 if ((rpc_stat != RPC_SUCCESS) &&
581 (rpc_stat != RPC_PROGVERSMISMATCH)) {
591 if ((rpc_stat != RPC_SUCCESS) ||
730 enum clnt_stat rpc_stat; local
738 rpc_stat = clnt_call(binding->dom_client, YPPROC_MAPLIST,
743 if (rpc_stat != RPC_SUCCESS) {
H A Dypxfr.c620 enum clnt_stat rpc_stat; local
644 rpc_stat = clnt_call(pdomb->dom_client, YPBINDPROC_NULL,
647 if (rpc_stat == RPC_SUCCESS) {
651 if (rpc_stat != RPC_PROGVERSMISMATCH) {
H A Dyppush.c207 enum clnt_stat rpc_stat; member
952 if (rd->rpc_stat == e) { in rpcerr_msg()
/illumos-gate/usr/src/stand/lib/fs/nfs/
H A Dmount.c390 enum clnt_stat rpc_stat; in nfs4init() local
423 rpc_stat = CLNT_CALL(root_CLIENT, NFSPROC4_NULL, xdr_void, NULL, in nfs4init()
426 if (rpc_stat != RPC_SUCCESS) { in nfs4init()
559 enum clnt_stat rpc_stat; in boot_nfs_mountroot() local
787 rpc_stat = CLNT_CALL(root_CLIENT, 0, in boot_nfs_mountroot()
790 if (rpc_stat == RPC_SUCCESS) in boot_nfs_mountroot()
811 rpc_stat = CLNT_CALL(root_CLIENT, 0, in boot_nfs_mountroot()
814 if (rpc_stat == RPC_SUCCESS) in boot_nfs_mountroot()
H A Dpmap.c421 bpmap_getport(rpcprog_t prog, rpcvers_t vers, enum clnt_stat *rpc_stat, in bpmap_getport() argument
453 *rpc_stat = brpc_call(PMAPPROG, PMAPVERS, PMAPPROC_GETPORT, in bpmap_getport()
457 if (*rpc_stat == RPC_PROGUNAVAIL) { in bpmap_getport()
479 *rpc_stat = brpc_call(RPCBPROG, RPCBVERS, RPCBPROC_GETADDR, in bpmap_getport()
483 if (*rpc_stat == RPC_SUCCESS) { in bpmap_getport()
497 if (*rpc_stat != RPC_SUCCESS) { in bpmap_getport()
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_subr.c56 enum clnt_stat rpc_stat; in remote_lock() local
79 rpc_stat = clnt_call(cl, NLM_GRANTED, in remote_lock()
84 return (rpc_stat == RPC_CANTDECODEARGS); in remote_lock()
H A Dnfs_sec.c514 enum clnt_stat rpc_stat; in nfs_sec_nego() local
530 rpc_stat = clnt_call(clnt, WNLPROC_LOOKUP, in nfs_sec_nego()
534 if (rpc_stat == RPC_SUCCESS && clnt_res.status == WNL_OK) in nfs_sec_nego()
536 if (rpc_stat != RPC_AUTHERROR) in nfs_sec_nego()
611 rpc_stat = clnt_call(clnt, WNLPROC3_LOOKUP, in nfs_sec_nego()
615 if (rpc_stat == RPC_SUCCESS && clnt_res.status == WNL3_OK) in nfs_sec_nego()
617 if (rpc_stat != RPC_AUTHERROR) in nfs_sec_nego()
/illumos-gate/usr/src/cmd/fs.d/nfs/umount/
H A Dumount.c241 enum clnt_stat rpc_stat; in inform_server() local
335 rpc_stat = clnt_call(cl, MOUNTPROC_UMNT, xdr_dirpath, in inform_server()
340 if (rpc_stat == RPC_PROGVERSMISMATCH && vers == MOUNTVERS) { in inform_server()
347 if (rpc_stat != RPC_SUCCESS) in inform_server()
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_generic.c91 enum clnt_stat rpc_stat; in clnt_create_vers_timed() local
104 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed()
106 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed()
112 while (rpc_stat == RPC_PROGVERSMISMATCH && v_high > v_low) { in clnt_create_vers_timed()
128 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, in clnt_create_vers_timed()
130 if (rpc_stat == RPC_SUCCESS) { in clnt_create_vers_timed()
138 rpc_createerr.cf_stat = rpc_stat; in clnt_create_vers_timed()
/illumos-gate/usr/src/cmd/fs.d/nfs/mount/
H A Dmount.c2017 enum clnt_stat rpc_stat; in get_fh() local
2178 rpc_stat = clnt_call(cl, MOUNTPROC_MNT, xdr_dirpath, in get_fh()
2180 if (rpc_stat != RPC_SUCCESS) { in get_fh()
2211 rpc_stat = clnt_call(cl, MOUNTPROC_PATHCONF, in get_fh()
2214 if (rpc_stat != RPC_SUCCESS) { in get_fh()
2245 rpc_stat = clnt_call(cl, MOUNTPROC_MNT, xdr_dirpath, in get_fh()
2248 if (rpc_stat != RPC_SUCCESS) { in get_fh()
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_nfs.c650 enum clnt_stat rpc_stat; in nfsmount() local
1234 rpc_stat = RPC_TIMEDOUT; in nfsmount()
1518 rpc_stat = clnt_call(cl, MOUNTPROC_MNT, in nfsmount()
1521 if (rpc_stat != RPC_SUCCESS) { in nfsmount()
1608 rpc_stat = clnt_call(cl, MOUNTPROC_MNT, in nfsmount()
1611 if (rpc_stat != RPC_SUCCESS) { in nfsmount()
2449 enum clnt_stat rpc_stat; in get_pathconf() local
2461 rpc_stat = clnt_call(cl, MOUNTPROC_PATHCONF, in get_pathconf()
2463 if (rpc_stat != RPC_SUCCESS) { in get_pathconf()
3559 enum clnt_stat rpc_stat; in nfsunmount() local
[all …]