Home
last modified time | relevance | path

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

/security/apparmor/include/
Dfile.h144 #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \
145 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
149 (dfa_map_xindex(ACCEPT_TABLE(dfa)[state] & 0x3fff))
151 #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \
153 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
158 dfa_map_xindex((ACCEPT_TABLE(dfa)[state] >> 14) & 0x3fff)
Dmatch.h94 #define ACCEPT_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_ACCEPT]->td_data)) macro
/security/apparmor/
Dfile.c256 if (ACCEPT_TABLE(dfa)[state] & 0x80000000) in aa_compute_fperms()
258 if (ACCEPT_TABLE(dfa)[state] & 0x40000000) in aa_compute_fperms()
Dpolicy_unpack.c391 int mode = ACCEPT_TABLE(dfa)[i]; in verify_accept()