Lines Matching refs:perm_t
69 perm_t perms;
73 {AID_SYSTEM, static_cast<perm_t>((uint32_t)(~0))},
74 {AID_VPN, static_cast<perm_t>(P_GET | P_SIGN | P_VERIFY)},
75 {AID_WIFI, static_cast<perm_t>(P_GET | P_SIGN | P_VERIFY)},
76 {AID_BLUETOOTH, static_cast<perm_t>(P_GET | P_INSERT | P_DELETE | P_EXIST | P_SIGN | P_VERIFY)},
80 {AID_ROOT, static_cast<perm_t>((uint32_t)(~0))},
82 {AID_ROOT, static_cast<perm_t>(P_GET)},
86 static const perm_t DEFAULT_PERMS = static_cast<perm_t>(
96 const char* get_perm_label(perm_t perm) { in get_perm_label()
134 static bool keystore_selinux_check_access(uid_t uid, perm_t perm, pid_t spid, const char* ssid) { in keystore_selinux_check_access()
177 bool has_permission(uid_t uid, perm_t perm, pid_t spid, const char* sid) { in has_permission()