HomeSort by relevance Sort by last modified time
    Searched refs:booleans (Results 1 - 25 of 46) sorted by null

1 2

  /external/selinux/libsepol/src/
boolean_internal.h 5 #include <sepol/booleans.h>
genbools.c 149 int sepol_genbools(void *data, size_t len, char *booleans)
160 if (load_booleans(&policydb, booleans, &changes) < 0) {
161 WARN(NULL, "error while reading %s", booleans);
195 int hidden sepol_genbools_policydb(policydb_t * policydb, const char *booleans)
199 rc = load_booleans(policydb, booleans, &changes);
booleans.c 8 #include <sepol/booleans.h>
213 ERR(handle, "could not iterate over booleans");
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
SampleDeviceInfo.java 34 boolean[] booleans = {Boolean.TRUE, Boolean.FALSE};
50 addArray("bar_boolean", booleans);
  /external/sepolicy/tools/sepolicy-analyze/
Android.mk 10 LOCAL_SRC_FILES := sepolicy-analyze.c dups.c neverallow.c perm.c typecmp.c booleans.c attribute.c utils.c
sepolicy-analyze.c 9 #include "booleans.h"
26 COMP(booleans),
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 23 private static boolean[] booleans; field in class:ArrayTest
34 booleans = new boolean[] { true };
45 assertEquals(booleans[0], Array.getBoolean(booleans, 0));
57 try { Array.getByte(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
69 try { Array.getChar(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
81 try { Array.getDouble(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
93 try { Array.getFloat(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
105 try { Array.getInt(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
117 try { Array.getLong(booleans, 0); fail(); } catch (IllegalArgumentException expected) {
    [all...]
  /cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
SampleDeviceInfo.java 34 boolean[] booleans = {Boolean.TRUE, Boolean.FALSE};
50 addArray("bar_boolean", 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]);
booleans_policydb.c 31 #include <sepol/booleans.h>
  /external/selinux/libsepol/include/sepol/
sepol.h 17 #include <sepol/booleans.h>
  /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]);
  /external/selinux/policycoreutils/po/
Makefile 63 booleans.py \
92 booleans.py:
93 sepolicy booleans -a > booleans.py
95 $(POTFILE): $(POTFILES) booleans.py
104 @rm -f booleans.py
  /external/selinux/policycoreutils/gui/
booleansPage.py 2 # booleansPage.py - GUI for Booleans page in system-config-securitylevel
199 cat=self.booleans.get_category(key).lower()
200 val=self.booleans.get_desc(key).lower()
209 self.booleans = seobject.booleanRecords()
210 booleansList = self.booleans.get_all(self.local)
216 self.store.set_value(iter, MODULE, self.booleans.get_category(name))
217 self.store.set_value(iter, DESC, self.booleans.get_desc(name))
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ParcelTest.java 380 final boolean[] booleans = {false, true, true};
381 parcel.writeBooleanArray(booleans);
383 final boolean[] booleans2 = new boolean[booleans.length];
385 assertTrue(Arrays.equals(booleans, booleans2));
400 final boolean[] booleans = {false, true, true};
401 parcel.writeBooleanArray(booleans);
404 assertTrue(Arrays.equals(booleans, booleans2));
  /external/selinux/policycoreutils/sepolicy/
sepolicy.py 68 booleans = sepolicy.get_all_booleans()
75 if v not in booleans:
76 raise ValueError("%s must be an SELinux process domain:\nValid domains: %s" % (v, ", ".join(booleans)))
82 if v not in booleans:
83 raise ValueError("%s must be an SELinux boolean:\nValid boolean: %s" % (v, ", ".join(booleans)))
396 def booleans(args): function
399 rc, args.booleans = selinux.security_get_boolean_names()
400 args.booleans.sort()
402 for b in args.booleans:
406 bools = parser.add_parser("booleans",
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
services.h 33 int sepol_genbools_policydb(policydb_t * policydb, const char *booleans);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
terulequery.py 71 used on the booleans.
73 boolean_equal If true, the booleans in the conditional
169 rule.conditional.booleans,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/
terulequery.py 71 used on the booleans.
73 boolean_equal If true, the booleans in the conditional
169 rule.conditional.booleans,
  /external/libselinux/
Android.mk 4 src/booleans.c \
  /external/selinux/policycoreutils/sepolicy/sepolicy/
__init__.py 777 booleans = None variable
779 global booleans
780 if not booleans:
781 booleans = selinux.security_get_boolean_names()[1]
782 return booleans
867 global booleans
886 booleans = None
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 280 private boolean[] booleans; field in class:ArrayAccessReplaceTest.Simple
298 return booleans[pos];
342 booleans[pos] = value;
  /external/v8/test/mjsunit/
regexp-static.js 148 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to booleans");
150 assertTrue(typeof RegExp.input == typeof String(), "RegExp.input coerces values to booleans");
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
boolcond.py 154 def booleans(self): member in class:ConditionalExpr
155 """The set of Booleans in the expression."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/policyrep/
boolcond.py 154 def booleans(self): member in class:ConditionalExpr
155 """The set of Booleans in the expression."""

Completed in 677 milliseconds

1 2