Home
last modified time | relevance | path

Searched refs:compiler_filter (Results 1 – 17 of 17) sorted by relevance

/frameworks/base/startop/scripts/app_startup/
Dforce_compiler_filter69 compiler_filter="$2"
79 if [[ -z "$compiler_filter" ]]; then
119 if [[ $compiler_filter == speed-profile ]]; then
135 force_package_compilation "$compiler_filter" "$package"
Drun_app_with_prefetch_test.py142 mad(compiler_filter='speed')
175 compiler_filter=None,
200 compiler_filter=None,
228 compiler_filter=None,
262 compiler_filter=None,
Drun_app_with_prefetch.py52 compiler_filter: Optional[str],
60 compiler_filter,
Drun_app_with_prefetch100 compiler_filter="$2"
343 configure_compiler_filter "$compiler_filter" "$package" "$activity" || exit 1
Dapp_startup_runner.py176 compiler_filter=collector_info.compiler_filter,
/frameworks/base/startop/scripts/app_startup/lib/
Dapp_runner.py70 compiler_filter: Optional[str],
83 self.compiler_filter = compiler_filter
114 if not self.compiler_filter:
139 current_compiler_filter != self.compiler_filter:
145 self.compiler_filter,
Dperfetto_trace_collector.py50 compiler_filter: Optional[str],
58 compiler_filter,
Dperfetto_trace_collector_test.py32 compiler_filter=None,
Dapp_runner_test.py41 compiler_filter='speed',
/frameworks/native/cmds/installd/
Dotapreopt_parameters.h42 const char* compiler_filter; variable
Dotapreopt_parameters.cpp215 compiler_filter = param; in ReadArgumentsV1()
324 compiler_filter = param; in ReadArgumentsPostV1()
Ddexopt.h117 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter,
Ddexopt.cpp342 const char* compiler_filter, in RunDex2Oat() argument
508 } else if (compiler_filter != nullptr) { in RunDex2Oat()
509 dex2oat_compiler_filter_arg = StringPrintf("--compiler-filter=%s", compiler_filter); in RunDex2Oat()
1609 const std::string& compiler_filter, in RunDexoptAnalyzer() argument
1625 std::string compiler_filter_arg = "--compiler-filter=" + compiler_filter; in RunDexoptAnalyzer()
1954 const char* compiler_filter, bool* is_public_out, int* dexopt_needed_out, in process_secondary_dex_dexopt() argument
2032 compiler_filter, profile_was_updated, in process_secondary_dex_dexopt()
2089 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter, in dexopt() argument
2132 instruction_set, compiler_filter, &is_public, &dexopt_needed, &oat_dir_str, in dexopt()
2234 compiler_filter, in dexopt()
Dotapreopt.cpp486 parameters_.compiler_filter, in Dexopt()
DInstalldNativeService.cpp2411 const char* compiler_filter = compilerFilter.c_str(); in dexopt() local
2420 oat_dir, dexFlags, compiler_filter, volume_uuid, class_loader_context, se_info, in dexopt()
/frameworks/native/cmds/installd/tests/
Dinstalld_dexopt_test.cpp360 std::string compiler_filter = "speed-profile"; in CompileSecondaryDex() local
377 compiler_filter, in CompileSecondaryDex()
437 void CompilePrimaryDexOk(std::string compiler_filter, in CompilePrimaryDexOk() argument
445 CompilePrimaryDex(compiler_filter, in CompilePrimaryDexOk()
456 void CompilePrimaryDexFail(std::string compiler_filter, in CompilePrimaryDexFail() argument
464 CompilePrimaryDex(compiler_filter, in CompilePrimaryDexFail()
475 void CompilePrimaryDex(std::string compiler_filter, in CompilePrimaryDex() argument
510 compiler_filter, in CompilePrimaryDex()
539 if (compiler_filter == "speed-profile") { in CompilePrimaryDex()
Dinstalld_otapreopt_test.cpp66 ASSERT_STREQ(params.compiler_filter, args[i++]); in verifyPackageParameters()