Lines Matching refs:lookupflags
610 rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_root_cred() argument
618 ret = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_root_cred()
624 rpcauth_bind_machine_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_machine_cred() argument
634 return auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_machine_cred()
638 rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_new_cred() argument
642 return rpcauth_lookupcred(auth, lookupflags); in rpcauth_bind_new_cred()
650 int lookupflags = 0; in rpcauth_bindcred() local
657 lookupflags |= RPCAUTH_LOOKUP_NEW; in rpcauth_bindcred()
662 new = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bindcred()
664 new = rpcauth_bind_machine_cred(task, lookupflags); in rpcauth_bindcred()
670 new = rpcauth_bind_root_cred(task, lookupflags); in rpcauth_bindcred()
674 new = rpcauth_bind_new_cred(task, lookupflags); in rpcauth_bindcred()