/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_tree.h | 68 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_resolve_ast.c | 149 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args) 156 rc = cil_resolve_name(current, cp->class_str, CIL_SYM_CLASSES, extra_args, &datum); 180 int cil_resolve_classperms_set(struct cil_tree_node *current, struct cil_classperms_set *cp_set, void *extra_args) 185 rc = cil_resolve_name(current, cp_set->set_str, CIL_SYM_CLASSPERMSETS, extra_args, &datum); 193 rc = cil_resolve_classperms_list(current, cp_set->set->classperms, extra_args); 205 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args) 212 rc = cil_resolve_classperms(current, curr->data, extra_args); 217 rc = cil_resolve_classperms_set(current, curr->data, extra_args); 230 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args) 233 struct cil_args_resolve *args = extra_args; 3779 struct cil_args_resolve extra_args; local [all...] |
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/valgrind/coregrind/ |
link_tool_exe_linux.in | 78 my $extra_args; 81 $extra_args = "-static -Wl,--section-start=.reginfo=$ala"; 84 $extra_args = "-static -Wl,--section-start=.MIPS.options=$ala"; 86 $extra_args = "-static -Wl,@FLAG_T_TEXT@=$ala"; 89 my $cmd = join(" ", @ARGV, $extra_args);
|
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
command_line.py | 24 def ProcessCommandLineArgs(cls, parser, options, extra_args, environment): 28 def Run(self, options, extra_args=None): 37 options, extra_args = parser.parse_known_args(args=args) 38 cls.ProcessCommandLineArgs(parser, options, extra_args, None) 39 return min(cls().Run(options, extra_args), 255)
|
/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/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, 44 @param extra_args: Additional arguments to pass to autoserv 130 return command + extra_args 133 def _autoserv_command_line(machines, extra_args, job=None, queue_entry=None, 140 @param extra_args - list - Additional arguments to pass to autoserv. 155 extra_args=extra_args, job=job, queue_entry=queue_entry,
|
/build/tools/releasetools/ |
test_common.py | 109 def _test_ZipWriteStr(self, zinfo_or_arcname, contents, extra_args=None): 110 extra_args = dict(extra_args or {}) 119 expected_compress_type = extra_args.get("compress_type", 125 expected_mode = extra_args.get("perms", 0o644) 128 expected_mode = extra_args.get("perms", 131 common.ZipWriteStr(zip_file, zinfo_or_arcname, contents, **extra_args) 140 def _test_ZipWriteStr_large_file(self, large, small, extra_args=None): 141 extra_args = dict(extra_args or {} [all...] |
/external/v8/build/android/buildbot/ |
bb_run_bot.py | 29 ['script', 'host_steps', 'extra_args', 'extra_gyp_defines', 'target_arch']) 31 TestConfig = collections.namedtuple('Tests', ['script', 'tests', 'extra_args']) 103 property_args + (bot_config.host_obj.extra_args or [])] 110 if test_obj.extra_args: 111 run_test_cmd.extend(test_obj.extra_args) 137 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None: 138 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args, 140 T = (lambda tests, extra_args=None: 142 extra_args)) 184 H(compile_step, extra_args=run_mb) [all...] |
/external/skia/tools/lua/ |
find_ngrams_on_ct | 25 args, extra_args = parser.parse_known_args() 51 cmd.extend(extra_args)
|
/external/selinux/libsepol/cil/test/unit/ |
test_cil_copy_ast.c | 40 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 1423 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local 1458 struct cil_args_copy *extra_args = gen_copy_args(parent_node, test_db2); local 1478 struct cil_args_copy *extra_args = gen_copy_args(test_db->ast->root, test_db); local 1501 struct cil_args_copy *extra_args = gen_copy_args(test_db2->ast->root, test_db2); 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...] |
/external/libvpx/libvpx/tools/ |
all_builds.py | 48 extra_args = argv[opt_end_index + 1:] 54 base_command = " ".join([BASE_COMMAND] + extra_args)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
all_builds.py | 48 extra_args = argv[opt_end_index + 1:] 54 base_command = " ".join([BASE_COMMAND] + extra_args)
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
iperf_server.py | 56 def start(self, extra_args="", tag=""): 60 extra_args: A string representing extra arguments to start iperf 74 cmd = "{} {} > {}".format(self.iperf_str, extra_args, full_out_path)
|
/external/autotest/utils/ |
compile_gwt_clients.py | 16 _COMPILE_LINE = ('java -Xmx512M %(extra_args)s ' 91 def compile_and_install_client(project_client, extra_args='', 103 java_args['extra_args'] = extra_args 120 def compile_all_projects(extra_args=''): 128 if not compile_and_install_client(project_client, extra_args): 157 dest='extra_args', action='store', 178 failed_clients = compile_all_projects(options.extra_args) 181 if not compile_and_install_client(client, options.extra_args,
|
/art/dex2oat/ |
dex2oat_test.cc | 50 const std::vector<std::string>& extra_args = {}, 59 args.insert(args.end(), extra_args.begin(), extra_args.end()); 195 void RunTest(bool use_fd, bool expect_use, const std::vector<std::string>& extra_args = {}) { 201 std::vector<std::string> copy(extra_args); 298 const std::vector<std::string>& extra_args = {}) { 304 std::vector<std::string> copy(extra_args);
|
/external/autotest/client/tests/btreplay/ |
btreplay.py | 33 def run_once(self, dev="", devices="", extra_args='', tmpdir=None): 63 tmpdir+" -N -W "+dev+" "+extra_args+" 2>&1" 71 (tmpdir, dev, extra_args)
|
/external/autotest/client/tests/reaim/ |
reaim.py | 42 extra_args = '', tmpdir = None): 57 cmd = self.ldlib + ' ./reaim ' + args + ' ' + extra_args
|
/external/autotest/client/common_lib/cros/ |
chromedriver.py | 72 extra_args=extra_chromedriver_args) 138 url_base=None, extra_args=None): 148 extra_args: List of extra arguments to forward to the chromedriver 169 if extra_args: 170 chromedriver_args.extend(extra_args)
|
/external/gtest/test/ |
gtest_xml_output_unittest.py | 260 extra_args=['%s=SuccessfulTest.*' % GTEST_FILTER_FLAG]) 262 def _GetXmlOutput(self, gtest_prog_name, extra_args, expected_exit_code): 272 extra_args) 287 expected_exit_code, extra_args=None): 295 actual = self._GetXmlOutput(gtest_prog_name, extra_args or [],
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_xml_output_unittest.py | 260 extra_args=['%s=SuccessfulTest.*' % GTEST_FILTER_FLAG]) 262 def _GetXmlOutput(self, gtest_prog_name, extra_args, expected_exit_code): 272 extra_args) 287 expected_exit_code, extra_args=None): 295 actual = self._GetXmlOutput(gtest_prog_name, extra_args or [],
|
/frameworks/compile/slang/tests/ |
test.py | 87 extra_args = extra_args_str.split() 89 args = base_args + extra_args + rs_files
|
/external/autotest/site_utils/ |
deploy_production.py | 168 extra_args = ['--skip-service-status'] 170 extra_args = [] 173 (DEPLOY_PRODUCTION_LOCAL, ' '.join(options.args + extra_args)))
|