Lines Matching refs:lookupflags
659 rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_root_cred() argument
667 ret = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_root_cred()
673 rpcauth_bind_machine_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_machine_cred() argument
683 return auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_machine_cred()
687 rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_new_cred() argument
691 return rpcauth_lookupcred(auth, lookupflags); in rpcauth_bind_new_cred()
699 int lookupflags = 0; in rpcauth_bindcred() local
706 lookupflags |= RPCAUTH_LOOKUP_NEW; in rpcauth_bindcred()
711 new = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bindcred()
713 new = rpcauth_bind_machine_cred(task, lookupflags); in rpcauth_bindcred()
719 new = rpcauth_bind_root_cred(task, lookupflags); in rpcauth_bindcred()
723 new = rpcauth_bind_new_cred(task, lookupflags); in rpcauth_bindcred()