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

1 2 3 4 5 6

  /external/selinux/libsepol/cil/src/
cil_resolve_ast.h 38 int cil_resolve_classorder(struct cil_tree_node *current, void *extra_args);
39 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args);
40 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args);
41 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args);
42 int cil_resolve_avrule(struct cil_tree_node *current, void *extra_args);
43 int cil_resolve_type_rule(struct cil_tree_node *current, void *extra_args);
44 int cil_resolve_typeattributeset(struct cil_tree_node *current, void *extra_args);
45 int cil_resolve_typealias(struct cil_tree_node *current, void *extra_args);
46 int cil_resolve_typebounds(struct cil_tree_node *current, void *extra_args);
47 int cil_resolve_typepermissive(struct cil_tree_node *current, void *extra_args);
    [all...]
cil_resolve_ast.c 157 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args)
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)
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)
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)
241 struct cil_args_resolve *args = extra_args;
3890 struct cil_args_resolve extra_args; local
    [all...]
cil_tree.h 72 int cil_tree_walk(struct cil_tree_node *start_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);
cil_verify.h 66 int __cil_verify_ordered_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args);
70 int __cil_verify_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args);
71 int __cil_pre_verify_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args);
  /external/python/cpython2/Lib/test/
ssltests.py 15 def run_regrtests(*extra_args):
22 if not extra_args:
30 args.extend(extra_args)
  /external/python/cpython3/Lib/test/
ssltests.py 15 def run_regrtests(*extra_args):
22 if not extra_args:
31 args.extend(extra_args)
  /tools/tradefederation/core/atest/test_runners/
vts_tf_test_runner.py 56 def run_tests(self, test_infos, extra_args):
61 extra_args: Dict of extra args to add to test run.
63 run_cmds = self._generate_run_commands(test_infos, extra_args)
67 def _parse_extra_args(self, extra_args):
76 extra_args: Dict of args
83 for arg in extra_args:
86 args_to_append.append(extra_args[arg])
89 args_to_append.extend(extra_args[arg])
98 def _generate_run_commands(self, test_infos, extra_args):
103 extra_args: Dict of extra args to add to test run
    [all...]
regression_test_runner.py 37 def run_tests(self, test_infos, extra_args):
44 pre = extra_args.pop(constants.PRE_PATCH_FOLDER)
45 post = extra_args.pop(constants.POST_PATCH_FOLDER)
robolectric_test_runner.py 42 def run_tests(self, test_infos, extra_args):
47 extra_args: Dict of extra args to add to test run.
50 env_vars = self.generate_env_vars(test_info, extra_args)
55 def generate_env_vars(test_info, extra_args):
63 extra_args: Dict of extra args to apply for test run.
69 for arg in extra_args:
example_test_runner.py 30 def run_tests(self, test_infos, extra_args):
35 extra_args: Dict of extra args to add to test run.
atest_tf_test_runner.py 47 def run_tests(self, test_infos, extra_args):
52 extra_args: Dict of extra args to add to test run.
56 if extra_args.get(constants.PRE_PATCH_ITERATIONS):
57 iterations = extra_args.pop(constants.PRE_PATCH_ITERATIONS)
59 elif extra_args.get(constants.POST_PATCH_ITERATIONS):
60 iterations = extra_args.pop(constants.POST_PATCH_ITERATIONS)
63 run_cmd = self._generate_run_commands(args, extra_args, metrics_folder)
113 def _parse_extra_args(extra_args):
117 extra_args: Dict of args
124 for arg in extra_args
    [all...]
  /external/chromium-trace/catapult/common/eslint/eslint/
__init__.py 43 def _CreateEslintCommand(rulesdir, extra_args):
47 if extra_args:
48 eslint_cmd.extend(extra_args.strip().split(' '))
52 def RunEslint(paths, rules_dir=DEFAULT_ESLINT_RULES_DIR, extra_args=None):
58 extra_args: A string to append to the end of the eslint command.
64 eslint_cmd = _CreateEslintCommand(rules_dir, extra_args)
  /external/skia/infra/bots/recipe_modules/gsutil/
api.py 15 def cp(self, name, src, dst, extra_args=None, multithread=False):
22 extra_args: optional list of args to be passed to gsutil. e.g. [-Z] asks
32 if extra_args:
33 cmd.extend(extra_args)
  /external/skqp/infra/bots/recipe_modules/gsutil/
api.py 15 def cp(self, name, src, dst, extra_args=None, multithread=False):
22 extra_args: optional list of args to be passed to gsutil. e.g. [-Z] asks
32 if extra_args:
33 cmd.extend(extra_args)
  /art/tools/
buildbot-build.sh 70 extra_args=SOONG_ALLOW_MISSING_DEPENDENCIES=true
73 make_command="make $j_arg $extra_args $showcommands build-art-host-tests $common_targets"
77 make_command="make $j_arg $extra_args $showcommands build-art-target-tests $common_targets"
  /external/autotest/client/tests/fsstress/
fsstress.py 23 def run_once(self, testdir = None, extra_args = '', nproc = '1000', nops = '1000'):
27 args = '-d %s -p %s -n %s %s' % (testdir, nproc, nops, extra_args)
  /external/autotest/site_utils/
deploy_server.py 86 def _update_server(server, extra_args=[]):
90 @param extra_args: args to be passed in to deploy_server_local.
99 (DEPLOY_SERVER_LOCAL, ' '.join(extra_args)))
109 def _update_in_parallel(servers, extra_args=[]):
122 do_server = lambda s: _update_server(s, extra_args)
163 options, extra_args = _parse_arguments(args[1:])
181 print('extra args for deploy_server_local: %s' % extra_args)
184 failures = _update_in_parallel(servers, extra_args)
198 retry_cmd = [args[0], '-x'] + failures.keys() + extra_args
  /external/autotest/client/tests/bonnie/
bonnie.py 45 def run_once(self, dir=None, extra_args='', user='root'):
50 if '-n' not in extra_args:
51 extra_args += ' -n 2048'
52 args = '-d ' + dir + ' -u ' + user + ' ' + extra_args
  /external/autotest/server/
autoserv_utils.py 25 results_directory=None, extra_args=[], job=None,
45 @param extra_args: Additional arguments to pass to autoserv
137 return command + extra_args
140 def _autoserv_command_line(machines, extra_args, job=None, queue_entry=None,
147 @param extra_args - list - Additional arguments to pass to autoserv.
163 extra_args=extra_args, job=job, queue_entry=queue_entry,
  /external/skia/infra/bots/recipe_modules/skia_swarming/examples/
full.py 22 tasks_to_hashes, dimensions={'os': 'Linux'}, extra_args=['--extra'])
  /external/skqp/infra/bots/recipe_modules/skia_swarming/examples/
full.py 22 tasks_to_hashes, dimensions={'os': 'Linux'}, extra_args=['--extra'])
  /external/skia/tools/lua/
find_ngrams_on_ct 25 args, extra_args = parser.parse_known_args()
51 cmd.extend(extra_args)
  /external/skqp/tools/lua/
find_ngrams_on_ct 25 args, extra_args = parser.parse_known_args()
51 cmd.extend(extra_args)
  /tools/test/connectivity/acts/framework/acts/controllers/
iperf_client.py 35 def start(self, extra_args="", tag=""):
39 extra_args: A string representing extra arguments to start iperf
55 cmd = "{} {}".format(self.iperf_cmd, extra_args)
  /tools/tradefederation/core/atest/
test_runner_handler.py 97 def run_all_tests(results_dir, test_infos, extra_args):
102 extra_args: Dict of extra args for test runners to use.
105 test_runner(results_dir).run_tests(tests, extra_args)

Completed in 465 milliseconds

1 2 3 4 5 6