Lines Matching defs:stat
100 enum clnt_stat stat;
108 if ((stat = key_call(KEY_ENCRYPT, xdr_cryptkeyarg, (char *)&arg,
112 RPCLOG(1, "rpc status %d ", stat);
113 RPCLOG(1, "(%s)\n", clnt_sperrno(stat));
114 return (stat);
132 enum clnt_stat stat;
140 if ((stat = key_call(KEY_DECRYPT, xdr_cryptkeyarg, (char *)&arg,
143 RPCLOG(1, "rpc status %d ", stat);
144 RPCLOG(1, "(%s)\n", clnt_sperrno(stat));
145 return (stat);
177 enum clnt_stat stat;
184 if ((stat = key_call((rpcproc_t)KEY_NET_GET, xdr_void, NULL,
187 RPCLOG(1, "rpc status %d ", stat);
188 RPCLOG(1, "(%s)\n", clnt_sperrno(stat));
189 return (stat);
205 enum clnt_stat stat;
208 if ((stat = key_call(KEY_GETCRED, xdr_netnamestr, (char *)&name,
211 RPCLOG(1, "rpc status %d ", stat);
212 RPCLOG(1, "(%s)\n", clnt_sperrno(stat));
213 return (stat);
236 enum clnt_stat stat;
298 stat = clnt_call(client, procn, xdr_args, args, xdr_rslt, rslt,
304 if (stat != RPC_SUCCESS) {
305 RPCLOG(1, "key_call: keyserver clnt_call failed: stat %d ",
306 stat);
307 RPCLOG(1, "(%s)\n", clnt_sperrno(stat));
309 return (stat);