Searched refs:userprefix (Results 1 - 5 of 5) sorted by relevance

/external/selinux/libsepol/cil/src/
H A Dcil.c156 CIL_KEY_USERPREFIX = cil_strpool_add("userprefix");
1178 struct cil_userprefix *userprefix = NULL; local
1190 userprefix = curr->data;
1191 user = userprefix->user;
1192 str_len += strlen("user ") + strlen(user->datum.fqn) + strlen(" prefix ") + strlen(userprefix->prefix_str) + 2;
1201 userprefix = curr->data;
1202 user = userprefix->user;
1205 userprefix->prefix_str);
1944 void cil_userprefix_init(struct cil_userprefix **userprefix) argument
1946 *userprefix
[all...]
H A Dcil_build_ast.h93 void cil_destroy_userprefix(struct cil_userprefix *userprefix);
H A Dcil_internal.h956 void cil_userprefix_init(struct cil_userprefix **userprefix);
H A Dcil_build_ast.c1489 struct cil_userprefix *userprefix = NULL; local
1501 cil_userprefix_init(&userprefix);
1503 userprefix->user_str = parse_current->next->data;
1504 userprefix->prefix_str = parse_current->next->next->data;
1506 ast_node->data = userprefix;
1511 cil_log(CIL_ERR, "Bad userprefix declaration at line %d of %s\n",
1513 cil_destroy_userprefix(userprefix);
1517 void cil_destroy_userprefix(struct cil_userprefix *userprefix) argument
1519 if (userprefix == NULL) {
1523 free(userprefix);
[all...]
H A Dcil_resolve_ast.c901 struct cil_userprefix *userprefix = current->data; local
906 rc = cil_resolve_name(current, userprefix->user_str, CIL_SYM_USERS, extra_args, &user_datum);
919 userprefix->user = (struct cil_user*)user_datum;

Completed in 267 milliseconds