Home
last modified time | relevance | path

Searched refs:needp (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/sys/
H A Dcapsicum.h394 const cap_rights_t *needp);
397 cap_check_inline(const cap_rights_t *havep, const cap_rights_t *needp) in cap_check_inline() argument
400 if (__predict_false(!cap_rights_contains(havep, needp))) in cap_check_inline()
401 return (cap_check_failed_notcapable(havep, needp)); in cap_check_inline()
406 cap_check_inline_transient(const cap_rights_t *havep, const cap_rights_t *needp) in cap_check_inline_transient() argument
409 if (__predict_false(!cap_rights_contains(havep, needp))) in cap_check_inline_transient()
438 int cap_check(const cap_rights_t *havep, const cap_rights_t *needp);
/freebsd/sys/kern/
H A Dsys_capability.c157 _cap_check(const cap_rights_t *havep, const cap_rights_t *needp, in _cap_check() argument
160 const cap_rights_t rights[] = { *needp, *havep }; in _cap_check()
162 if (!cap_rights_contains(havep, needp)) { in _cap_check()
174 cap_check(const cap_rights_t *havep, const cap_rights_t *needp) in cap_check() argument
177 return (_cap_check(havep, needp, CAPFAIL_NOTCAPABLE)); in cap_check()
181 cap_check_failed_notcapable(const cap_rights_t *havep, const cap_rights_t *needp) in cap_check_failed_notcapable() argument
183 const cap_rights_t rights[] = { *needp, *havep }; in cap_check_failed_notcapable()