/src/lib/libc/rpc/ |
clnt_simple.c | 122 enum clnt_stat 135 enum clnt_stat clnt_stat; local in function:rpc_call 210 clnt_stat = CLNT_CALL(rcp->client, procnum, inproc, in, 215 if (clnt_stat != RPC_SUCCESS) 217 return (clnt_stat);
|
/src/lib/libquota/ |
quota_nfs.c | 100 enum clnt_stat clnt_stat; local in function:callaurpc 122 clnt_stat = clnt_call(client, procnum, inproc, in, 125 return (int) clnt_stat;
|
/src/sbin/mount_nfs/ |
getnfsargs.c | 112 enum clnt_stat clnt_stat; local in function:getnfsargs 219 clnt_stat = clnt_call(clp, RPCMNT_MOUNT, 221 switch (clnt_stat) {
|
/src/tests/lib/libc/rpc/ |
t_rpc.c | 137 enum clnt_stat rv; 172 enum clnt_stat rv; 222 enum clnt_stat clnt_stat; local in function:allhosts 224 clnt_stat = rpc_broadcast(RPCBPROG, RPCBVERS, RPCBPROC_NULL, 227 if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT) 228 ERRX(EXIT_FAILURE, "%s", clnt_sperrno(clnt_stat));
|
/src/usr.bin/rup/ |
rup.c | 316 enum clnt_stat clnt_stat; local in function:allhosts 324 clnt_stat = rpc_broadcast(RSTATPROG, RSTATVERS_TIME, RSTATPROC_STATS, 327 if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT) 328 errx(1, "%s", clnt_sperrno(clnt_stat));
|
/src/usr.bin/rusers/ |
rusers.c | 230 enum clnt_stat clnt_stat; local in function:onehost 246 clnt_stat = clnt_call(rusers_clnt, RUSERSPROC_NAMES, xdr_void, NULL, 248 if (clnt_stat != RPC_SUCCESS) 249 errx(1, "%s", clnt_sperrno(clnt_stat)); 260 enum clnt_stat clnt_stat; local in function:allhosts 263 clnt_stat = rpc_broadcast(RUSERSPROG, RUSERSVERS_IDLE, 267 if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT [all...] |
/src/sbin/umount/ |
umount.c | 195 enum clnt_stat clnt_stat; local in function:umountfs 351 clnt_stat = clnt_call(clp, RPCMNT_UMOUNT, xdr_dir, 353 if (clnt_stat != RPC_SUCCESS) {
|
/src/include/rpc/ |
clnt.h | 53 * Rpc calls return an enum clnt_stat. This should be looked at more, 57 enum clnt_stat { enum 116 enum clnt_stat re_status; 145 enum clnt_stat (*cl_call)(struct __rpc_client *, 198 * enum clnt_stat 434 extern void clnt_perrno (enum clnt_stat); /* stderr */ 435 extern char *clnt_sperrno (enum clnt_stat); /* string */ 451 enum clnt_stat cf_stat; 462 * enum clnt_stat 474 extern enum clnt_stat rpc_call(const char *, const rpcprog_t [all...] |