Home
last modified time | relevance | path

Searched refs:extra_args (Results 1 – 11 of 11) sorted by relevance

/art/dex2oat/
Ddex2oat_image_test.cc87 const std::vector<std::string>& extra_args) { in CompileImageAndGetSizes() argument
91 std::vector<std::string> local_extra_args = extra_args; in CompileImageAndGetSizes()
332 std::vector<std::string> extra_args; in TEST_F() local
333 extra_args.push_back("--profile-file=" + head_profile_filename); in TEST_F()
334 extra_args.push_back(android::base::StringPrintf("--base=0x%08x", kBaseAddress)); in TEST_F()
335 bool head_ok = CompileBootImage(extra_args, filename_prefix, head_dex_files, &error_msg); in TEST_F()
340 extra_args.clear(); in TEST_F()
341 extra_args.push_back("--profile-file=" + mid_profile_filename); in TEST_F()
342 AddRuntimeArg(extra_args, "-Xbootclasspath:" + mid_bcp_string); in TEST_F()
343 AddRuntimeArg(extra_args, "-Xbootclasspath-locations:" + mid_bcp_string); in TEST_F()
[all …]
Ddex2oat_test.cc77 const std::vector<std::string>& extra_args = {}, in GenerateOdexForTestWithStatus() argument
101 args.insert(args.end(), extra_args.begin(), extra_args.end());
114 const std::vector<std::string>& extra_args = {}, in GenerateOdexForTest() argument
121 extra_args,
135 const std::vector<std::string>& extra_args, in GenerateOdexForTest() argument
143 CHECK(std::any_of(extra_args.begin(), in GenerateOdexForTest()
144 extra_args.end(), in GenerateOdexForTest()
146 CHECK(std::any_of(extra_args.begin(), in GenerateOdexForTest()
147 extra_args.end(), in GenerateOdexForTest()
157 extra_args, in GenerateOdexForTest()
[all …]
/art/tools/
Dbuildbot-build.sh66 extra_args="SOONG_ALLOW_MISSING_DEPENDENCIES=true"
71 extra_args="$extra_args TARGET_BUILD_UNBUNDLED=true"
83 …make_command="build/soong/soong_ui.bash --make-mode $j_arg $extra_args $showcommands build-art-hos…
91 …make_command="build/soong/soong_ui.bash --make-mode $j_arg $extra_args $showcommands build-art-tar…
/art/runtime/
Ddexopt_test.cc80 std::vector<std::string> extra_args { in GenerateAlternateImage() local
88 bool ok = CompileBootImage(extra_args, filename_prefix, dex_files, dex_locations, &error_msg); in GenerateAlternateImage()
99 const std::vector<std::string>& extra_args) { in GenerateOatForTest() argument
128 args.insert(args.end(), extra_args.begin(), extra_args.end()); in GenerateOatForTest()
169 const std::vector<std::string>& extra_args) { in GenerateOdexForTest() argument
175 extra_args); in GenerateOdexForTest()
Ddexopt_test.h48 const std::vector<std::string>& extra_args = {});
55 const std::vector<std::string>& extra_args = {});
Dcommon_runtime_test.h119 bool CompileBootImage(const std::vector<std::string>& extra_args,
126 bool CompileBootImage(const std::vector<std::string>& extra_args,
132 extra_args, image_file_name_prefix, dex_files, dex_files, error_msg, use_fd_prefix);
Dcommon_runtime_test.cc425 bool CommonRuntimeTestImpl::CompileBootImage(const std::vector<std::string>& extra_args, in CompileBootImage() argument
481 argv.insert(argv.end(), extra_args.begin(), extra_args.end()); in CompileBootImage()
/art/tools/jfuzz/
Drun_jfuzz_test.py180 def __init__(self, dexer, debug_info, extra_args=None): argument
190 if extra_args is not None:
191 self._art_cmd += extra_args
255 def __init__(self, dexer, debug_info, device, extra_args=None): argument
267 if extra_args is not None:
268 self._dalvik_cmd += extra_args
/art/profman/
Dprofile_assistant_test.cc197 const std::vector<const std::string>& extra_args = std::vector<const std::string>()) { in ProcessProfiles() argument
205 argv_str.insert(argv_str.end(), extra_args.begin(), extra_args.end()); in ProcessProfiles()
253 std::vector<std::string>& extra_args, in RunProfman() argument
259 argv_str.insert(argv_str.end(), extra_args.begin(), extra_args.end()); in RunProfman()
277 std::vector<std::string> extra_args; in DumpClassesAndMethods() local
278 extra_args.push_back("--dump-classes-and-methods"); in DumpClassesAndMethods()
279 return RunProfman(filename, extra_args, file_contents); in DumpClassesAndMethods()
283 std::vector<std::string> extra_args; in DumpOnly() local
284 extra_args.push_back("--dump-only"); in DumpOnly()
285 return RunProfman(filename, extra_args, file_contents); in DumpOnly()
[all …]
/art/runtime/gc/space/
Dimage_space_test.cc85 std::vector<std::string> extra_args = { in TEST_F() local
95 bool success = CompileBootImage(extra_args, image_dir + '/' + prefix, dex_files, &error_msg); in TEST_F()
/art/tools/hiddenapi/
Dhiddenapi_test.cc46 const std::vector<std::string>& extra_args, in RunHiddenapiEncode() argument
69 argv_str.insert(argv_str.end(), extra_args.begin(), extra_args.end()); in RunHiddenapiEncode()