Lines Matching refs:lookupflags
607 rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_root_cred() argument
616 lookupflags |= RPCAUTH_LOOKUP_ASYNC; in rpcauth_bind_root_cred()
617 ret = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_root_cred()
623 rpcauth_bind_machine_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_machine_cred() argument
634 lookupflags |= RPCAUTH_LOOKUP_ASYNC; in rpcauth_bind_machine_cred()
635 return auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bind_machine_cred()
639 rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_new_cred() argument
643 return rpcauth_lookupcred(auth, lookupflags); in rpcauth_bind_new_cred()
651 int lookupflags = 0; in rpcauth_bindcred() local
658 lookupflags |= RPCAUTH_LOOKUP_NEW | RPCAUTH_LOOKUP_ASYNC; in rpcauth_bindcred()
663 new = auth->au_ops->lookup_cred(auth, &acred, lookupflags); in rpcauth_bindcred()
665 new = rpcauth_bind_machine_cred(task, lookupflags); in rpcauth_bindcred()
671 new = rpcauth_bind_root_cred(task, lookupflags); in rpcauth_bindcred()
675 new = rpcauth_bind_new_cred(task, lookupflags); in rpcauth_bindcred()