Home
last modified time | relevance | path

Searched refs:l1 (Results 1 – 9 of 9) sorted by relevance

/system/sepolicy/tools/sepolicy-analyze/
Dtypecmp.c120 static int find_match(policydb_t *policydb, struct avtab_node *l1, in find_match() argument
127 if (l1->key.source_type < c->key.source_type) in find_match()
129 if (l1->key.source_type == c->key.source_type && in find_match()
130 l1->key.target_type < c->key.target_type) in find_match()
132 if (l1->key.source_type == c->key.source_type && in find_match()
133 l1->key.target_type == c->key.target_type && in find_match()
134 l1->key.target_class <= c->key.target_class) in find_match()
139 l1->key.source_type == c->key.source_type && in find_match()
140 l1->key.target_type == c->key.target_type && in find_match()
141 l1->key.target_class == c->key.target_class) { in find_match()
[all …]
/system/sepolicy/private/
Dmls11 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject);
15 (l1 dom l2 or t1 == mlstrustedsubject);
19 (l1 eq l2 or t1 == mlstrustedsubject);
28 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject);
33 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
38 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
48 (l2 eq h2 and (l1 eq l2 or t1 == mlstrustedsubject));
55 (l1 eq l2);
65 (t2 != app_data_file_type or l1 dom l2 or t1 == mlstrustedsubject);
67 … ( (t2 != app_data_file_type and t2 != appdomain_tmpfs) or l1 dom l2 or t1 == mlstrustedsubject);
[all …]
/system/sepolicy/reqd_mask/
Dmls1 mlsconstrain binder { set_context_mgr } (l1 eq l2);
/system/sepolicy/microdroid/reqd_mask/
Dmls1 mlsconstrain binder { set_context_mgr } (l1 eq l2);
/system/sepolicy/microdroid/system/private/
Dmls12 mlsconstrain process { transition dyntransition } (h1 eq h2 and l1 eq l2);
/system/libbase/
Dlogging.cpp304 LogFunction TeeLogger(LogFunction&& l1, LogFunction&& l2) { in TeeLogger() argument
305 return [l1 = std::move(l1), l2 = std::move(l2)](LogId id, LogSeverity severity, const char* tag, in TeeLogger()
308 l1(id, severity, tag, file, line, message); in TeeLogger()
/system/media/audio_utils/tests/
Daudio_mutex_tests.cpp198 audio_utils::lock_guard l1(mutex1()); in combo123() local
209 audio_utils::lock_guard l1(mutex1()); // 2 is acquired before 1. in combo123() local
/system/libbase/include/android-base/
Dlogging.h128 LogFunction TeeLogger(LogFunction&& l1, LogFunction&& l2);
/system/memory/libmeminfo/libsmapinfo/
Dsmapinfo.cpp744 [](const librank::LibRecord& l1, const librank::LibRecord& l2) { in run_librank() argument
745 return l1.pss() > l2.pss(); in run_librank()