Lines Matching refs:xdrproc_t
86 static int key_call( u_long, xdrproc_t, void *, xdrproc_t, void *);
93 if (!key_call((u_long) KEY_SET, (xdrproc_t)xdr_keybuf, in key_setsecret()
95 (xdrproc_t)xdr_keystatus, &status)) { in key_setsecret()
119 if (key_call((u_long) KEY_NET_GET, (xdrproc_t)xdr_void, NULL, in key_secretkey_is_set()
120 (xdrproc_t)xdr_key_netstres, &kres) && in key_secretkey_is_set()
139 if (!key_call((u_long)KEY_ENCRYPT_PK, (xdrproc_t)xdr_cryptkeyarg2, &arg, in key_encryptsession_pk()
140 (xdrproc_t)xdr_cryptkeyres, &res)) { in key_encryptsession_pk()
160 if (!key_call((u_long)KEY_DECRYPT_PK, (xdrproc_t)xdr_cryptkeyarg2, &arg, in key_decryptsession_pk()
161 (xdrproc_t)xdr_cryptkeyres, &res)) { in key_decryptsession_pk()
180 if (!key_call((u_long)KEY_ENCRYPT, (xdrproc_t)xdr_cryptkeyarg, &arg, in key_encryptsession()
181 (xdrproc_t)xdr_cryptkeyres, &res)) { in key_encryptsession()
200 if (!key_call((u_long)KEY_DECRYPT, (xdrproc_t)xdr_cryptkeyarg, &arg, in key_decryptsession()
201 (xdrproc_t)xdr_cryptkeyres, &res)) { in key_decryptsession()
215 if (!key_call((u_long)KEY_GEN, (xdrproc_t)xdr_void, NULL, in key_gendes()
216 (xdrproc_t)xdr_des_block, key)) { in key_gendes()
228 if (!key_call((u_long) KEY_NET_PUT, (xdrproc_t)xdr_key_netstarg, arg, in key_setnet()
229 (xdrproc_t)xdr_keystatus, &status)){ in key_setnet()
246 if (!key_call((u_long) KEY_GET_CONV, (xdrproc_t)xdr_keybuf, pkey, in key_get_conv()
247 (xdrproc_t)xdr_cryptkeyres, &res)) { in key_get_conv()
414 key_call(u_long proc, xdrproc_t xdr_arg, void *arg, xdrproc_t xdr_rslt, in key_call()