Home
last modified time | relevance | path

Searched refs:rpcerr (Results 1 – 5 of 5) sorted by relevance

/dragonfly/usr.bin/rpcinfo/
H A Drpcinfo.c372 struct rpc_err rpcerr; local
404 clnt_geterr(client, &rpcerr);
405 minvers = rpcerr.re_vers.low;
406 maxvers = rpcerr.re_vers.high;
418 clnt_geterr(client, &rpcerr);
419 minvers = rpcerr.re_vers.low;
1252 struct rpc_err rpcerr; local
1290 clnt_geterr(client, &rpcerr);
1351 struct rpc_err rpcerr; local
1505 struct rpc_err rpcerr; local
[all …]
/dragonfly/lib/libypclnt/
H A Dypclnt_passwd.c140 struct rpc_err rpcerr; in yppasswd_local() local
193 clnt_geterr(clnt, &rpcerr); in yppasswd_local()
194 if (rpcerr.re_status != RPC_SUCCESS) { in yppasswd_local()
240 struct rpc_err rpcerr; in yppasswd_remote() local
274 clnt_geterr(clnt, &rpcerr); in yppasswd_remote()
275 if (rpcerr.re_status != RPC_SUCCESS) { in yppasswd_remote()
/dragonfly/lib/libc/rpc/
H A Dclnt_generic.c116 struct rpc_err rpcerr; in clnt_create_vers_timed() local
133 clnt_geterr(clnt, &rpcerr); in clnt_create_vers_timed()
134 minvers = rpcerr.re_vers.low; in clnt_create_vers_timed()
135 maxvers = rpcerr.re_vers.high; in clnt_create_vers_timed()
154 clnt_geterr(clnt, &rpcerr); in clnt_create_vers_timed()
158 rpc_createerr.cf_error = rpcerr; in clnt_create_vers_timed()
H A Drpcb_clnt.c989 struct rpc_err rpcerr; in __rpcb_findaddr_timed() local
991 clnt_geterr(client, &rpcerr); in __rpcb_findaddr_timed()
992 if (rpcerr.re_vers.low > RPCBVERS4) in __rpcb_findaddr_timed()
/dragonfly/sbin/mount_nfs/
H A Dmount_nfs.c598 struct rpc_err rpcerr; in nfs_tryproto() local
693 clnt_geterr(clp, &rpcerr); in nfs_tryproto()
697 return (returncode(status, &rpcerr)); in nfs_tryproto()
723 clnt_geterr(clp, &rpcerr); in nfs_tryproto()
727 return (returncode(status, &rpcerr)); in nfs_tryproto()
764 returncode(enum clnt_stat status, struct rpc_err *rpcerr) in returncode() argument
777 switch (rpcerr->re_errno) { in returncode()