Searched refs:class_str (Results 1 – 11 of 11) sorted by relevance
/external/selinux/libsepol/cil/src/ |
D | cil_write_ast.c | 483 fprintf(cil_out, "(%s %s %s)\n", CIL_KEY_CLASSCOMMON, classcommon->class_str, in cil_write_classcommon() 958 char *class_str; in cil_unfill_classperms() local 962 class_str = cp->class_str; in cil_unfill_classperms() 963 len += strlen(class_str) + 1; in cil_unfill_classperms() 971 sprintf(*out_str, "(%s %s)", class_str, perms_str); in cil_unfill_classperms()
|
D | cil_internal.h | 380 char *class_str; member 403 char *class_str; member 840 char *class_str; member
|
D | cil_tree.c | 563 cil_log(CIL_INFO, " class: %s", cp->class_str); in cil_tree_print_classperms() 950 cil_log(CIL_INFO, "CLASSCOMMON: class: %s, common: %s\n", clscom->class_str, clscom->common_str); in cil_tree_print_node() 1365 } else if (vt->class_str != NULL) { in cil_tree_print_node() 1366 cil_log(CIL_INFO, "%s ", vt->class_str); in cil_tree_print_node() 1381 } else if (vt->class_str != NULL) { in cil_tree_print_node() 1382 cil_log(CIL_INFO, "%s ", vt->class_str); in cil_tree_print_node()
|
D | cil_copy_ast.c | 184 (*new)->class_str = orig->class_str; in cil_copy_classperms() 317 new->class_str = orig->class_str; in cil_copy_classcommon() 1423 new->class_str = orig->class_str; in cil_copy_validatetrans()
|
D | cil.c | 1938 (*classcommon)->class_str = NULL; in cil_classcommon_init() 2358 (*validtrans)->class_str = NULL; in cil_validatetrans_init() 2407 (*cp)->class_str = NULL; in cil_classperms_init()
|
D | cil_resolve_ast.c | 164 rc = cil_resolve_name(current, cp->class_str, CIL_SYM_CLASSES, extra_args, &datum); in cil_resolve_classperms() 751 rc = cil_resolve_name(current, clscom->class_str, CIL_SYM_CLASSES, extra_args, &class_datum); in cil_resolve_classcommon() 1807 rc = cil_resolve_name(current, validtrans->class_str, CIL_SYM_CLASSES, args, &class_datum); in cil_resolve_validatetrans()
|
D | cil_build_ast.c | 602 (*cp)->class_str = parse_current->data; in cil_fill_classperms() 992 clscom->class_str = parse_current->next->data; in cil_gen_classcommon() 4031 validtrans->class_str = parse_current->next->data; in cil_gen_validatetrans()
|
/external/selinux/libsepol/cil/test/unit/ |
D | test_cil_copy_ast.c | 300 …ertStrEquals(tc, ((struct cil_classcommon *)test_ast_node->data)->class_str, test_copy->class_str); in test_cil_copy_classcommon() 615 …ruct cil_avrule *)test_ast_node->data)->classpermset->class_str, test_copy->classpermset->class_st… in test_cil_copy_avrule() 1328 …onstrain*)test_copy)->classpermset->class_str, ((struct cil_constrain *)test_ast_node->data)->clas… in test_cil_copy_constrain()
|
D | test_cil_build_ast.c | 80 test_avrule->classpermset->class_str = cil_strdup(test_current->next->next->next->cl_head->data); in test_cil_parse_to_list() 111 test_avrule->classpermset->class_str = cil_strdup(test_current->next->next->next->cl_head->data); in test_cil_parse_to_list_currnull_neg() 142 test_avrule->classpermset->class_str = cil_strdup(test_current->next->next->next->cl_head->data); in test_cil_parse_to_list_listnull_neg() 8158 …CuAssertStrEquals(tc, ((struct cil_avrule*)test_ast_node->data)->classpermset->class_str, test_cur… in test_cil_gen_avrule()
|
/external/python/cpython2/Objects/ |
D | classobject.c | 406 class_str(PyClassObject *op) in class_str() function 461 (reprfunc)class_str, /* tp_str */
|
D | typeobject.c | 6690 static PyObject *class_str = NULL; local 6693 if (class_str == NULL) { 6694 class_str = PyString_FromString("__class__"); 6695 if (class_str == NULL) 6699 class_attr = PyObject_GetAttr(obj, class_str);
|