Lines Matching refs:rpc_cred
54 struct rpc_cred { struct
122 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
123 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int);
129 struct rpc_cred *);
134 int (*cr_init)(struct rpc_auth *, struct rpc_cred *);
135 void (*crdestroy)(struct rpc_cred *);
137 int (*crmatch)(struct auth_cred *, struct rpc_cred *, int);
138 struct rpc_cred * (*crbind)(struct rpc_task *, struct rpc_cred *, int);
146 int (*crkey_timeout)(struct rpc_cred *);
147 bool (*crkey_to_expire)(struct rpc_cred *);
148 char * (*crstringify_acceptor)(struct rpc_cred *);
161 struct rpc_cred * rpc_lookup_cred(void);
162 struct rpc_cred * rpc_lookup_cred_nonblock(void);
163 struct rpc_cred * rpc_lookup_machine_cred(const char *service_name);
174 struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int);
175 void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const stru…
176 struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
177 struct rpc_cred * rpcauth_generic_bind_cred(struct rpc_task *, struct rpc_cred *, int);
178 void put_rpccred(struct rpc_cred *);
190 struct rpc_cred *);
191 bool rpcauth_cred_key_to_expire(struct rpc_cred *);
192 char * rpcauth_stringify_acceptor(struct rpc_cred *);
195 struct rpc_cred * get_rpccred(struct rpc_cred *cred) in get_rpccred()