Searched defs:extra_args (Results 1 - 18 of 18) sorted by relevance

/external/selinux/libsepol/cil/src/
H A Dcil_find.c350 static int __cil_find_matching_avrule_in_ast(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
353 struct cil_args_find *args = extra_args;
H A Dandroid.c74 static int __extract_attributees_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
77 struct version_args *args = (struct version_args *) extra_args;
81 if (node == NULL || finished == NULL || extra_args == NULL) {
146 struct version_args extra_args; local
147 extra_args.db = db;
148 extra_args.vers_map = vers_map;
149 extra_args.num = NULL;
150 rc = cil_tree_walk(db->ast->root, __extract_attributees_helper, NULL, NULL, &extra_args);
605 static int __attributize_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
608 struct version_args *args = (struct version_args *) extra_args;
758 struct version_args extra_args; local
840 struct version_args extra_args; local
[all...]
H A Dcil_reset_ast.c398 int __cil_reset_node(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, __attribute__((unused)) void *extra_args) argument
H A Dcil_copy_ast.c1707 int __cil_copy_node_helper(struct cil_tree_node *orig, __attribute__((unused)) uint32_t *finished, void *extra_args) argument
1722 if (orig == NULL || extra_args == NULL) {
1726 args = extra_args;
2085 int __cil_copy_last_child_helper(__attribute__((unused)) struct cil_tree_node *orig, void *extra_args) argument
2090 args = extra_args;
2105 struct cil_args_copy extra_args; local
2107 extra_args.dest = dest;
2108 extra_args.db = db;
2110 rc = cil_tree_walk(orig, __cil_copy_node_helper, NULL, __cil_copy_last_child_helper, &extra_args);
H A Dcil_tree.c251 extra_args: additional data
257 extra_args: any additional data to be passed to the helper functions
261 int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args),
262 int (*first_child)(struct cil_tree_node *node, void *extra_args),
263 int (*last_child)(struct cil_tree_node *node, void *extra_args),
264 void *extra_args)
272 rc = (*process_node)(node, &finished, extra_args);
284 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args);
297 int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args),
298 int (*first_child)(struct cil_tree_node *node, void *extra_args),
260 cil_tree_walk_core(struct cil_tree_node *node, int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tree_node *node, void *extra_args), int (*last_child)(struct cil_tree_node *node, void *extra_args), void *extra_args) argument
296 cil_tree_walk(struct cil_tree_node *node, int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tree_node *node, void *extra_args), int (*last_child)(struct cil_tree_node *node, void *extra_args), void *extra_args) argument
[all...]
H A Dcil_verify.c377 int __cil_verify_ordered_node_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args) argument
379 struct cil_args_verify_order *args = extra_args;
415 struct cil_args_verify_order extra_args; local
418 extra_args.flavor = &flavor;
420 rc = cil_tree_walk(current, __cil_verify_ordered_node_helper, NULL, NULL, &extra_args);
873 int __cil_verify_booleanif_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, __attribute__((unused)) void *extra_args) argument
897 struct cil_complex_symtab *symtab = extra_args;
1336 int __cil_verify_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1344 struct cil_args_verify *args = extra_args;
1348 if (node == NULL || extra_args
1613 __cil_pre_verify_helper(struct cil_tree_node *node, uint32_t *finished, __attribute__((unused)) void *extra_args) argument
[all...]
H A Dcil_write_ast.c15 static int __cil_write_first_child_helper(struct cil_tree_node *node, void *extra_args);
16 static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args);
17 static int __cil_write_last_child_helper(struct cil_tree_node *node, void *extra_args);
434 struct cil_args_write *extra_args) {
436 FILE *cil_out = extra_args->cil_out;
452 extra_args);
1134 static int __cil_write_first_child_helper(struct cil_tree_node *node, void *extra_args) argument
1137 struct cil_args_write *args = (struct cil_args_write *) extra_args;
1140 if (node == NULL || extra_args == NULL) {
1153 static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
433 cil_write_class(struct cil_tree_node *node, uint32_t *finished, struct cil_args_write *extra_args) argument
1462 __cil_write_last_child_helper(struct cil_tree_node *node, void *extra_args) argument
1488 struct cil_args_write extra_args; local
[all...]
H A Dcil_policy.c74 static int __cil_gather_statements_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
79 lists = (struct cil_list **)extra_args;
1307 static int __cil_block_te_rules_to_policy_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1309 struct block_te_rules_extra *args = extra_args;
1426 static int __cil_te_rules_to_policy_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1428 struct te_rules_extra *args = extra_args;
H A Dcil_post.c330 static int __cil_post_db_count_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
332 struct cil_db *db = extra_args;
432 static int __cil_post_db_array_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
434 struct cil_db *db = extra_args;
1230 static int __cil_post_db_attr_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1233 struct cil_db *db = extra_args;
1331 static int __cil_post_db_roletype_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1334 struct cil_db *db = extra_args;
1421 static int __cil_post_db_userrole_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1424 struct cil_db *db = extra_args;
1519 __cil_post_db_cat_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
1874 __cil_post_db_classperms_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
2002 struct cil_args_verify extra_args; local
2059 struct cil_args_verify extra_args; local
[all...]
H A Dcil_resolve_ast.c157 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args) argument
164 rc = cil_resolve_name(current, cp->class_str, CIL_SYM_CLASSES, extra_args, &datum);
188 int cil_resolve_classperms_set(struct cil_tree_node *current, struct cil_classperms_set *cp_set, void *extra_args) argument
193 rc = cil_resolve_name(current, cp_set->set_str, CIL_SYM_CLASSPERMSETS, extra_args, &datum);
201 rc = cil_resolve_classperms_list(current, cp_set->set->classperms, extra_args);
213 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args) argument
220 rc = cil_resolve_classperms(current, curr->data, extra_args);
225 rc = cil_resolve_classperms_set(current, curr->data, extra_args);
238 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args) argument
241 struct cil_args_resolve *args = extra_args;
294 cil_resolve_permissionx(struct cil_tree_node *current, struct cil_permissionx *permx, void *extra_args) argument
311 cil_resolve_avrule(struct cil_tree_node *current, void *extra_args) argument
373 cil_resolve_type_rule(struct cil_tree_node *current, void *extra_args) argument
421 cil_resolve_typeattributeset(struct cil_tree_node *current, void *extra_args) argument
466 cil_resolve_expandtypeattribute(struct cil_tree_node *current, void *extra_args) argument
504 cil_resolve_aliasactual(struct cil_tree_node *current, void *extra_args, enum cil_flavor flavor, enum cil_flavor alias_flavor) argument
592 cil_resolve_typepermissive(struct cil_tree_node *current, void *extra_args) argument
620 cil_resolve_nametypetransition(struct cil_tree_node *current, void *extra_args) argument
679 cil_resolve_rangetransition(struct cil_tree_node *current, void *extra_args) argument
742 cil_resolve_classcommon(struct cil_tree_node *current, void *extra_args) argument
785 cil_resolve_classmapping(struct cil_tree_node *current, void *extra_args) argument
826 cil_resolve_userrole(struct cil_tree_node *current, void *extra_args) argument
851 cil_resolve_userlevel(struct cil_tree_node *current, void *extra_args) argument
904 cil_resolve_userrange(struct cil_tree_node *current, void *extra_args) argument
957 cil_resolve_userprefix(struct cil_tree_node *current, void *extra_args) argument
983 cil_resolve_selinuxuser(struct cil_tree_node *current, void *extra_args) argument
1032 cil_resolve_roletype(struct cil_tree_node *current, void *extra_args) argument
1057 cil_resolve_roletransition(struct cil_tree_node *current, void *extra_args) argument
1104 cil_resolve_roleallow(struct cil_tree_node *current, void *extra_args) argument
1129 cil_resolve_roleattributeset(struct cil_tree_node *current, void *extra_args) argument
1465 cil_resolve_classorder(struct cil_tree_node *current, void *extra_args) argument
1510 cil_resolve_sidorder(struct cil_tree_node *current, void *extra_args) argument
1557 cil_resolve_catorder(struct cil_tree_node *current, void *extra_args) argument
1599 cil_resolve_sensitivityorder(struct cil_tree_node *current, void *extra_args) argument
1632 cil_resolve_cats(struct cil_tree_node *current, struct cil_cats *cats, void *extra_args) argument
1648 cil_resolve_catset(struct cil_tree_node *current, struct cil_catset *catset, void *extra_args) argument
1667 cil_resolve_senscat(struct cil_tree_node *current, void *extra_args) argument
1699 cil_resolve_level(struct cil_tree_node *current, struct cil_level *level, void *extra_args) argument
1725 cil_resolve_levelrange(struct cil_tree_node *current, struct cil_levelrange *lvlrange, void *extra_args) argument
1779 cil_resolve_constrain(struct cil_tree_node *current, void *extra_args) argument
1800 cil_resolve_validatetrans(struct cil_tree_node *current, void *extra_args) argument
1824 cil_resolve_context(struct cil_tree_node *current, struct cil_context *context, void *extra_args) argument
1904 cil_resolve_filecon(struct cil_tree_node *current, void *extra_args) argument
1926 cil_resolve_portcon(struct cil_tree_node *current, void *extra_args) argument
1951 cil_resolve_genfscon(struct cil_tree_node *current, void *extra_args) argument
1976 cil_resolve_nodecon(struct cil_tree_node *current, void *extra_args) argument
2026 cil_resolve_netifcon(struct cil_tree_node *current, void *extra_args) argument
2065 cil_resolve_pirqcon(struct cil_tree_node *current, void *extra_args) argument
2090 cil_resolve_iomemcon(struct cil_tree_node *current, void *extra_args) argument
2115 cil_resolve_ioportcon(struct cil_tree_node *current, void *extra_args) argument
2140 cil_resolve_pcidevicecon(struct cil_tree_node *current, void *extra_args) argument
2165 cil_resolve_devicetreecon(struct cil_tree_node *current, void *extra_args) argument
2190 cil_resolve_fsuse(struct cil_tree_node *current, void *extra_args) argument
2215 cil_resolve_sidcontext(struct cil_tree_node *current, void *extra_args) argument
2257 cil_resolve_blockinherit_link(struct cil_tree_node *current, void *extra_args) argument
2355 cil_resolve_blockinherit_copy(struct cil_tree_node *current, void *extra_args) argument
2396 cil_resolve_blockabstract(struct cil_tree_node *current, void *extra_args) argument
2422 cil_resolve_in(struct cil_tree_node *current, void *extra_args) argument
2458 cil_resolve_in_list(void *extra_args) argument
2514 cil_resolve_bounds(struct cil_tree_node *current, void *extra_args, enum cil_flavor flavor, enum cil_flavor attr_flavor) argument
2596 cil_resolve_default(struct cil_tree_node *current, void *extra_args) argument
2619 cil_resolve_defaultrange(struct cil_tree_node *current, void *extra_args) argument
2714 cil_resolve_call1(struct cil_tree_node *current, void *extra_args) argument
2969 cil_resolve_call2(struct cil_tree_node *current, void *extra_args) argument
3109 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) argument
3176 cil_resolve_boolif(struct cil_tree_node *current, void *extra_args) argument
3241 cil_resolve_tunif(struct cil_tree_node *current, void *extra_args) argument
3307 cil_resolve_userattributeset(struct cil_tree_node *current, void *extra_args) argument
3350 __cil_resolve_ast_node(struct cil_tree_node *node, void *extra_args) argument
3628 __cil_resolve_ast_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
3726 __cil_resolve_ast_first_child_helper(struct cil_tree_node *current, void *extra_args) argument
3776 __cil_resolve_ast_last_child_helper(struct cil_tree_node *current, void *extra_args) argument
3837 struct cil_args_resolve extra_args; local
4060 cil_resolve_name(struct cil_tree_node *ast_node, char *name, enum cil_sym_index sym_index, void *extra_args, struct cil_symtab_datum **datum) argument
[all...]
H A Dcil_binary.c1940 int __cil_cond_to_policydb_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args) argument
1944 struct cil_args_booleanif *args = extra_args;
3608 int __cil_node_to_policydb(struct cil_tree_node *node, void *extra_args) argument
3612 struct cil_args_binary *args = extra_args;
3794 int __cil_binary_create_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args) argument
3813 rc = __cil_node_to_policydb(node, extra_args);
4835 struct cil_args_binary extra_args; local
4903 extra_args.db = db;
4904 extra_args.pdb = pdb;
4905 extra_args
[all...]
H A Dcil_build_ast.c5915 int __cil_build_ast_node_helper(struct cil_tree_node *parse_current, uint32_t *finished, void *extra_args) argument
5927 if (parse_current == NULL || finished == NULL || extra_args == NULL) {
5931 args = extra_args;
6318 int __cil_build_ast_last_child_helper(struct cil_tree_node *parse_current, void *extra_args) argument
6324 if (extra_args == NULL) {
6328 args = extra_args;
6370 struct cil_args_build extra_args; local
6376 extra_args.ast = ast;
6377 extra_args.db = db;
6378 extra_args
[all...]
/external/selinux/libsepol/cil/test/unit/
H A Dtest_cil_copy_ast.c40 int __cil_copy_node_helper(struct cil_tree_node *orig, uint32_t *finished, void *extra_args);
1403 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1407 int rc = __cil_copy_node_helper(test_db->ast->root->cl_head, &finished, extra_args);
1423 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1427 int rc = __cil_copy_node_helper(test_db->ast->root->cl_head, &finished, extra_args);
1458 struct cil_args_copy *extra_args = gen_copy_args(parent_node, test_db2); local
1462 int rc = __cil_copy_node_helper(test_db->ast->root->cl_head->cl_head, &finished, extra_args);
1478 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1482 int rc = __cil_copy_node_helper(test_db->ast->root->cl_head->cl_head, &finished, extra_args);
1501 struct cil_args_copy *extra_args local
1521 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1544 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1564 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1587 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1610 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1630 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1653 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1676 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1696 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1719 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1739 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1762 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1785 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1805 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1828 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1848 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1871 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1891 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1914 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1934 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
1957 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
1980 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2003 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2023 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2046 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2066 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2089 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2109 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2132 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2152 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2189 struct cil_args_copy *extra_args = gen_copy_args(parent_node, test_db2); local
2222 struct cil_args_copy *extra_args = gen_copy_args(parent_node, test_db2); local
2256 struct cil_args_copy *extra_args = gen_copy_args(parent_node, test_db2); local
2279 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2299 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2322 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2342 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2365 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2388 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2411 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2431 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2454 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2474 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local
2499 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2522 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2545 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); local
2563 struct cil_args_copy *extra_args = NULL; local
[all...]
H A Dtest_cil_build_ast.c16423 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16425 int rc = __cil_build_ast_node_helper(test_tree->root->cl_head->cl_head, &finished, extra_args);
16441 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16443 int rc = __cil_build_ast_node_helper(test_tree->root->cl_head->cl_head, &finished, extra_args);
16460 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16462 int rc = __cil_build_ast_node_helper(test_tree->root->cl_head->cl_head, &finished, extra_args);
16478 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16480 int rc = __cil_build_ast_node_helper(test_tree->root->cl_head->cl_head, &finished, extra_args);
16497 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16499 int rc = __cil_build_ast_node_helper(test_tree->root->cl_head->cl_head, &finished, extra_args);
16515 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16534 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16552 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16570 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16588 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16606 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16624 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16643 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16661 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16679 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16697 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16715 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16733 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16751 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16769 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16787 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16805 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16823 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16841 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16859 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16877 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16895 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16913 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16931 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16949 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16967 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
16985 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17002 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17020 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17037 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17055 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17073 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17091 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17109 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17127 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17147 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17167 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17185 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17203 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17221 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17239 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17259 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17278 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17296 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17314 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17333 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17352 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17370 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17388 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17406 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17424 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17442 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17460 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17478 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17496 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17514 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17532 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17550 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17568 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17586 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17604 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17622 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17640 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17658 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17676 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17694 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17712 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17730 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17748 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17766 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17784 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17802 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17820 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17838 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17856 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17874 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17892 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17910 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17928 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17946 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17964 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
17982 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18000 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18018 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18036 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18054 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18072 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18090 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18108 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18126 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18144 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18163 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18181 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18199 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18217 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18235 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18253 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18274 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18295 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18319 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18343 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18363 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18383 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18401 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18419 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18437 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18455 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18473 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18491 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18509 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18527 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18545 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18563 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18581 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18599 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18617 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18635 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18653 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18671 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18691 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18709 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18727 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18745 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18763 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18781 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18799 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18817 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18835 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18853 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18871 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18889 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18907 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18925 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
18951 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, macronode, NULL); local
18981 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, macronode, NULL); local
19002 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19020 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19038 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19056 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19074 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19092 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19110 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19128 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
19144 struct cil_args_build *extra_args = NULL; local
19161 struct cil_args_build *extra_args = gen_build_args(test_db->ast->root, test_db, NULL, NULL); local
[all...]
/external/googletest/googletest/src/
H A Dgtest-death-test.cc889 ::std::vector<std::string> extra_args = local
891 args.insert(args.end(), extra_args.begin(), extra_args.end());
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-death-test.cc890 ::std::vector<testing::internal::string> extra_args = local
892 args.insert(args.end(), extra_args.begin(), extra_args.end());
/external/v8/testing/gtest/src/
H A Dgtest-death-test.cc888 ::std::vector<testing::internal::string> extra_args = local
890 args.insert(args.end(), extra_args.begin(), extra_args.end());
/external/e2fsprogs/misc/
H A Dfuse2fs.c3726 char extra_args[BUFSIZ]; local
3846 snprintf(extra_args, BUFSIZ, "-okernel_cache,subtype=ext4,use_ino,"
3850 fuse_opt_add_arg(&args, extra_args);

Completed in 2098 milliseconds