HomeSort by relevance Sort by last modified time
    Searched defs:bools (Results 1 - 7 of 7) sorted by null

  /external/selinux/libsepol/tests/
test-linker-cond-map.c 57 void test_cond_expr_mapping(policydb_t * p, avrule_decl_t * d, test_cond_expr_t * bools, int len)
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
71 if (bools[i].bool) {
72 CU_ASSERT(strcmp(p->sym_val_to_name[SYM_BOOLS][expr->bool - 1], bools[i].bool) == 0);
91 test_cond_expr_t bools[2]; local
102 bools[0].bool = "g_b_bool_1";
103 bools[0].expr_type = COND_BOOL;
104 test_cond_expr_mapping(base, d, bools, 1);
112 bools[0].bool = "o1_b_bool_1";
113 bools[0].expr_type = COND_BOOL
122 test_cond_expr_t bools[3]; local
    [all...]
  /external/selinux/policycoreutils/sestatus/
sestatus.c 189 char **bools; local
343 if (security_get_boolean_names(&bools, &nbool) >= 0) {
347 if (strlen(bools[i]) + 1 > COL)
348 COL = strlen(bools[i]) + 1;
351 printf_tab(bools[i]);
353 rc = security_get_boolean_active(bools[i]);
365 c = security_get_boolean_pending(bools[i]);
382 free(bools[i]);
384 free(bools);
  /external/selinux/libselinux/src/
audit2why.c 63 static int check_booleans(struct boolean_t **bools)
150 *bools = calloc(sizeof(struct boolean_t), fcnt + 1);
151 struct boolean_t *b = *bools;
317 struct boolean_t *bools; local
388 if (check_booleans(&bools) == 0) {
396 struct boolean_t *b = bools;
401 b = bools;
409 free(bools);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
__init__.py 394 def bools(self): member in class:SELinuxPolicy
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/policyrep/
__init__.py 394 def bools(self): member in class:SELinuxPolicy
  /external/selinux/libsemanage/src/
direct_api.c 1060 dbase_config_t *bools = semanage_bool_dbase_local(sh); local
1134 bools_modified = bools->dtable->is_modified(bools->dbase);
    [all...]
  /external/selinux/policycoreutils/sepolicy/sepolicy/
__init__.py 577 bools = None variable
579 global bools
580 if not bools:
581 bools = info(BOOLEAN)
582 return bools
709 global bools
718 bools = None
758 bools = []
773 if (b[0], enabled) not in bools and (b[0], not enabled) not in bools
    [all...]

Completed in 1704 milliseconds