Lines Matching refs:security
57 * security_init - initializes the security framework
79 * Load all the remaining security modules.
92 __setup("security=", choose_lsm);
131 * security_module_enable - Load given security module on boot ?
135 * to avoid security registration races. This method may also be used
157 * @lsm: the name of the security module
1000 * may result in a call here with ->security being NULL.
1002 if (unlikely(cred->security == NULL))
1505 int security_tun_dev_alloc_security(void **security)
1507 return call_int_hook(tun_dev_alloc_security, 0, security);
1511 void security_tun_dev_free_security(void *security)
1513 call_void_hook(tun_dev_free_security, security);
1523 int security_tun_dev_attach_queue(void *security)
1525 return call_int_hook(tun_dev_attach_queue, 0, security);
1529 int security_tun_dev_attach(struct sock *sk, void *security)
1531 return call_int_hook(tun_dev_attach, 0, sk, security);
1535 int security_tun_dev_open(void *security)
1537 return call_int_hook(tun_dev_open, 0, security);