Home
last modified time | relevance | path

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

/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()
194 cap_rights_to_vmprot(const cap_rights_t *havep) in cap_rights_to_vmprot() argument
199 if (cap_rights_is_set(havep, CAP_MMAP_R)) in cap_rights_to_vmprot()
201 if (cap_rights_is_set(havep, CAP_MMAP_W)) in cap_rights_to_vmprot()
[all …]
/freebsd/sys/sys/
H A Dcapsicum.h393 int cap_check_failed_notcapable(const cap_rights_t *havep,
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);
442 vm_prot_t cap_rights_to_vmprot(const cap_rights_t *havep);