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

1 2

  /external/selinux/libsepol/tests/
test-linker-cond-map.c 54 uint32_t expr_type; member in struct:test_cond_expr
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
103 bools[0].expr_type = COND_BOOL;
113 bools[0].expr_type = COND_BOOL;
131 bools[0].expr_type = COND_BOOL;
141 bools[0].expr_type = COND_BOOL;
153 bools[0].expr_type = COND_BOOL;
155 bools[1].expr_type = COND_BOOL;
157 bools[2].expr_type = COND_AND
    [all...]
debug.c 42 switch (cur->expr_type) {
65 fprintf(fp, "error! (%d)", cur->expr_type);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
constraint.py 33 expr_type = expr_node.expr_type(policy)
35 if expr_type == qpol.QPOL_CEXPR_TYPE_ATTR and sym_type >= qpol.QPOL_CEXPR_SYM_L1L2:
231 expr_type = expr_node.expr_type(self.policy)
233 if expr_type == qpol.QPOL_CEXPR_TYPE_ATTR:
240 elif expr_type == qpol.QPOL_CEXPR_TYPE_NAMES:
257 expression.append(_expr_type_to_text[expr_type])
288 expr_type = expr_node.expr_type(self.policy
    [all...]
boolcond.py 89 expr_node_type = expr_node.expr_type(self.policy)
107 expr_node_type = expr_node.expr_type(self.policy)
164 expr_node_type = expr_node.expr_type(self.policy)
188 expr_node_type = expr_node.expr_type(self.policy)
  /device/google/dragon/audio/hal/
cras_expr.h 44 enum expr_type { enum
54 enum expr_type type;
  /external/toybox/kconfig/
expr.h 34 enum expr_type { enum
44 enum expr_type type;
162 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
163 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
164 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
180 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
181 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
lkc_proto.h 41 P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
expr.c 24 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce)
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2)
43 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2)
135 static void __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2)
509 static void expr_eliminate_dups1(enum expr_type type, struct expr **ep1, struct expr **ep2)
561 static void expr_eliminate_dups2(enum expr_type type, struct expr **ep1, struct expr **ep2)
853 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2)
882 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym)
984 int expr_compare_type(enum expr_type t1, enum expr_type t2
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
constraint.h 39 uint32_t expr_type; /* expression type */ member in struct:constraint_expr
conditional.h 56 uint32_t expr_type; member in struct:cond_expr
  /external/selinux/checkpolicy/
policy_define.h 19 cond_expr_t *define_cond_expr(uint32_t expr_type, void *arg1, void* arg2);
73 uintptr_t define_cexpr(uint32_t expr_type, uintptr_t arg1, uintptr_t arg2);
policy_define.c     [all...]
checkpolicy.c 311 switch (cur->expr_type) {
  /external/selinux/libsepol/src/
conditional.c 124 if (cur_a->expr_type != cur_b->expr_type)
126 if (cur_a->expr_type == COND_BOOL) {
220 switch (cur->expr_type) {
280 new_expr->expr_type = cur->expr_type;
367 if (e->expr_type == COND_NOT) {
389 switch (e->expr_type) {
746 if (expr->expr_type <= 0 || expr->expr_type > COND_LAST)
    [all...]
kernel_to_cil.c 42 if (curr->expr_type == COND_BOOL) {
51 switch(curr->expr_type) {
60 curr->expr_type);
133 if (curr->expr_type == CEXPR_ATTR || curr->expr_type == CEXPR_NAMES) {
174 if (curr->expr_type == CEXPR_ATTR) {
197 switch (curr->expr_type) {
203 curr->expr_type);
    [all...]
kernel_to_conf.c 41 if (curr->expr_type == COND_BOOL) {
50 switch(curr->expr_type) {
58 sepol_log_err("Unknown conditional operator: %i", curr->expr_type);
131 if (curr->expr_type == CEXPR_ATTR || curr->expr_type == CEXPR_NAMES) {
171 if (curr->expr_type == CEXPR_ATTR) {
194 switch (curr->expr_type) {
199 sepol_log_err("Unknown constraint expression type: %i", curr->expr_type);
    [all...]
module_to_cil.c 1251 if (curr->expr_type == COND_BOOL) {
1269 switch(curr->expr_type) {
1281 num_params = curr->expr_type == COND_NOT ? 1 : 2;
    [all...]
write.c 769 buf[items++] = cpu_to_le32(cur_expr->expr_type);
929 buf[0] = cpu_to_le32(e->expr_type);
936 switch (e->expr_type) {
    [all...]
  /external/selinux/libsepol/cil/src/
cil_resolve_ast.h 93 int cil_resolve_expr(enum cil_flavor expr_type, struct cil_list *str_expr, struct cil_list **datum_expr, struct cil_tree_node *parent, void *extra_args);
cil_binary.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
731 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
732 if (!Expr_type) return 0;
739 expr_type = make_type("expr", &AST_type, NULL, 0);
740 if (!expr_type) return 0;
741 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
714 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
715 if (!Expr_type) return 0;
722 expr_type = make_type("expr", &AST_type, NULL, 0);
723 if (!expr_type) return 0;
724 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
725 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
727 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
729 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
731 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
732 if (!Expr_type) return 0;
739 expr_type = make_type("expr", &AST_type, NULL, 0);
740 if (!expr_type) return 0;
741 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2)
    [all...]
  /external/selinux/checkpolicy/test/
dispol.c 197 switch (cur->expr_type) {
dismod.c 376 switch (cur->expr_type) {

Completed in 965 milliseconds

1 2