/external/selinux/python/sepolicy/ |
test_sepolicy.py | 75 "Verify sepolicy booleans -a works" 76 p = Popen(['sepolicy', 'booleans', '-a'], stdout=PIPE) 81 "Verify sepolicy booleans -b works" 82 p = Popen(['sepolicy', 'booleans', '-b', 'allow_ypbind'], stdout=PIPE) 87 "Verify sepolicy booleans -b works" 88 p = Popen(['sepolicy', 'booleans', '-b', 'nis_enabled'], stdout=PIPE)
|
/external/python/cpython2/Doc/c-api/ |
bool.rst | 8 Booleans in Python are implemented as a subclass of integers. There are only 9 two booleans, :const:`Py_False` and :const:`Py_True`. As such, the normal 10 creation and deletion functions don't apply to booleans. The following macros
|
/external/selinux/python/semanage/ |
semanage-boolean.8 | 10 from policy sources. semanage boolean command controls the settings of booleans in SELinux policy. booleans are if\-then\-else rules written in SELinux Policy. They can be used to customize the way that SELinux Policy rules effect a confined domain. 51 List customized booleans
|
/external/selinux/libselinux/man/man3/ |
selinux_boolean_sub.3 | 13 .I \%/etc/selinux/{POLICYTYPE}/booleans.subs_dist
|
/external/selinux/libselinux/man/man8/ |
togglesebool.8 | 11 flips the current value of a list of booleans. If the value is currently a 1, 20 .BR booleans (8),
|
/external/selinux/libsepol/tests/ |
test-linker-cond-map.c | 41 * - 2 booleans in base 42 * - 2 booleans in module 43 * - 2 booleans in base optional 44 * - 2 booleans in module optional 45 * - 2 booleans, base and module 46 * - 2 booleans, base optional and module 47 * - 2 booleans, base optional and module optional 48 * - 3 booleans, base, base optional, module 93 /* these tests look at booleans and conditionals in the base only
|
/external/selinux/libsemanage/man/man3/ |
semanage_modify.3 | 24 is invoked, changes will be permanently written into the local store, and then loaded into policy. Validity of the object being added is checked at commit time. Adding new objects with respect to policy is allowed, except in the case of booleans. Attempt to add new booleans with respect to policy will fail at commit time.
|
/external/selinux/policycoreutils/setsebool/ |
setsebool.8 | 11 sets the current state of a particular SELinux boolean or a list of booleans 31 getsebool(8), booleans(8), togglesebool(8), semanage(8)
|
/system/sepolicy/tools/sepolicy-analyze/ |
sepolicy-analyze.c | 9 #include "booleans.h" 26 COMP(booleans),
|
/external/selinux/libsemanage/src/ |
booleans_activedb.c | 23 semanage_bool_t *** booleans, unsigned int *count) 71 *booleans = tmp_booleans; 91 semanage_bool_t ** booleans, unsigned int count) 107 name = semanage_bool_get_name(booleans[i]); 110 newvalue = semanage_bool_get_value(booleans[i]);
|
/external/selinux/policycoreutils/po/ |
sv.po | 979 msgid "Could not list booleans" [all...] |
de.po | 999 msgid "Could not list booleans" [all...] |
es.po | 996 msgid "Could not list booleans" [all...] |
fr.po | 1005 msgid "Could not list booleans" [all...] |
hu.po | 987 msgid "Could not list booleans" [all...] |
it.po | 977 msgid "Could not list booleans" [all...] |
pl.po | 984 msgid "Could not list booleans" [all...] |
pt_BR.po | 993 msgid "Could not list booleans" [all...] |
/frameworks/base/apct-tests/perftests/core/src/android/text/ |
BoringLayoutIsBoringPerfTest.java | 41 private static final boolean[] BOOLEANS = new boolean[]{false, true}; 47 for (boolean boring : BOOLEANS) { 48 for (boolean cached : BOOLEANS) {
|
/external/selinux/libsepol/include/sepol/ |
sepol.h | 20 #include <sepol/booleans.h>
|
/external/testng/src/test/java/test/methods/ |
SampleMethod1.java | 45 "All booleans should be true: " + m_ok1 + " " + m_ok2
|
/external/llvm/test/CodeGen/Generic/ |
2003-07-08-BadCastToBool.ll | 11 ;; for bitwise operations but not booleans! For booleans,
|
/external/selinux/policycoreutils/sestatus/ |
sestatus.8 | 46 The status of booleans. 66 Display the current state of booleans.
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/ |
2003-07-08-BadCastToBool.ll | 11 ;; for bitwise operations but not booleans! For booleans,
|
/art/test/003-omnibus-opcodes/src/ |
Array.java | 53 static void checkBooleans(boolean[] booleans) { 54 Main.assertTrue(booleans[0]); 55 Main.assertTrue(booleans[1]); 56 Main.assertTrue(!booleans[2]); 57 Main.assertTrue(booleans[3]); 58 Main.assertTrue(!booleans[4]);
|