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

  /external/selinux/libsepol/cil/src/
cil.c 154 CIL_KEY_USERPREFIX = cil_strpool_add("userprefix");
1131 struct cil_userprefix *userprefix = NULL; local
1143 userprefix = curr->data;
1144 user = userprefix->user;
1145 str_len += strlen("user ") + strlen(user->datum.fqn) + strlen(" prefix ") + strlen(userprefix->prefix_str) + 2;
1154 userprefix = curr->data;
1155 user = userprefix->user;
1158 userprefix->prefix_str);
    [all...]
cil_build_ast.c 1334 struct cil_userprefix *userprefix = NULL; local
1346 cil_userprefix_init(&userprefix);
1348 userprefix->user_str = parse_current->next->data;
1349 userprefix->prefix_str = parse_current->next->next->data;
1351 ast_node->data = userprefix;
1356 cil_log(CIL_ERR, "Bad userprefix declaration at line %d of %s\n",
1358 cil_destroy_userprefix(userprefix);
1362 void cil_destroy_userprefix(struct cil_userprefix *userprefix)
1364 if (userprefix == NULL) {
1368 free(userprefix);
    [all...]
cil_resolve_ast.c 852 struct cil_userprefix *userprefix = current->data; local
856 rc = cil_resolve_name(current, userprefix->user_str, CIL_SYM_USERS, extra_args, &user_datum);
860 userprefix->user = (struct cil_user*)user_datum;
    [all...]

Completed in 151 milliseconds