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