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