Home
last modified time | relevance | path

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

/security/apparmor/include/
Dfile.h131 #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \
132 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
136 (dfa_map_xindex(ACCEPT_TABLE(dfa)[state] & 0x3fff))
138 #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \
140 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
145 dfa_map_xindex((ACCEPT_TABLE(dfa)[state] >> 14) & 0x3fff)
Dmatch.h88 #define ACCEPT_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_ACCEPT]->td_data)) macro
/security/apparmor/
Dfile.c220 if (ACCEPT_TABLE(dfa)[state] & 0x80000000) in compute_perms()
222 if (ACCEPT_TABLE(dfa)[state] & 0x40000000) in compute_perms()
Dpolicy_unpack.c306 int mode = ACCEPT_TABLE(dfa)[i]; in verify_accept()