Home
last modified time | relevance | path

Searched refs:credential (Results 1 – 4 of 4) sorted by relevance

/xnu-11215/bsd/kern/
H A Dkern_authorization.c372 kauth_authorize_action(kauth_scope_t scope, kauth_cred_t credential, kauth_action_t action, in kauth_authorize_action() argument
379 result = scope->ks_callback(credential, scope->ks_idata, action, arg0, arg1, arg2, arg3); in kauth_authorize_action()
399 credential, scope->ks_listeners[i].kll_idata, in kauth_authorize_action()
454 kauth_authorize_process_callback(kauth_cred_t credential, __unused void *idata, kauth_action_t acti… in kauth_authorize_process_callback() argument
464 if (cansignal(current_proc(), credential, (struct proc *)arg0, (int)arg1)) { in kauth_authorize_process_callback()
473 if (cantrace(current_proc(), credential, (proc_t)arg0, (int *)arg1)) { in kauth_authorize_process_callback()
560 kauth_authorize_action(kauth_scope_fileop, credential, action, arg0, arg1, arg2, 0); in kauth_authorize_fileop()
574 kauth_authorize_generic(kauth_cred_t credential, kauth_action_t action) in kauth_authorize_generic() argument
576 if (credential == NULL) { in kauth_authorize_generic()
580 return kauth_authorize_action(kauth_scope_generic, credential, action, 0, 0, 0, 0); in kauth_authorize_generic()
[all …]
/xnu-11215/doc/allocators/
H A Dread-only.md65 its credential. The principle here is to ensure the integrity of the entire
66 chain from source pointer (e.g. thread) to destination data (e.g. credential).
/xnu-11215/bsd/sys/
H A Dkauth.h866 extern int kauth_authorize_generic(kauth_cred_t credential, kauth_action_t action);
/xnu-11215/bsd/vfs/
H A Dvfs_subr.c8067 static int vnode_authorize_callback(kauth_cred_t credential, void *idata, kauth_action_t actio…