Home
last modified time | relevance | path

Searched refs:dexopt_flags (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/cmds/installd/tests/
Dinstalld_otapreopt_test.cpp65 const int dexopt_flags = atoi(args[i++]); in verifyPackageParameters() local
100 ASSERT_EQ(params.dexopt_flags, dexopt_flags); in verifyPackageParameters()
102 ASSERT_EQ(params.dexopt_flags, dexopt_flags | DEXOPT_GENERATE_COMPACT_DEX); in verifyPackageParameters()
/frameworks/native/cmds/installd/
Dotapreopt_parameters.cpp140 dexopt_flags = DEXOPT_GENERATE_COMPACT_DEX; in SetDefaultsForPostV1Arguments()
205 dexopt_flags |= in ReadArgumentsV1()
316 dexopt_flags = atoi(param); in ReadArgumentsPostV1()
320 dexopt_flags |= (version < 8) ? DEXOPT_GENERATE_COMPACT_DEX : 0u; in ReadArgumentsPostV1()
Ddexopt.cpp1838 static bool validate_dexopt_storage_flags(int dexopt_flags, in validate_dexopt_storage_flags() argument
1841 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) { in validate_dexopt_storage_flags()
1843 if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1847 } else if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1953 int dexopt_flags, const char* volume_uuid, int uid, const char* instruction_set, in process_secondary_dex_dexopt() argument
1959 if (!validate_dexopt_storage_flags(dexopt_flags, &storage_flag, error_msg)) { in process_secondary_dex_dexopt()
2065 ((dexopt_flags & DEXOPT_FORCE) != 0)) { in process_secondary_dex_dexopt()
2072 *is_public_out = ((dexopt_flags & DEXOPT_PUBLIC) != 0) && is_file_public(dex_path); in process_secondary_dex_dexopt()
2089 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter, in dexopt() argument
2096 CHECK_EQ(dexopt_flags & ~DEXOPT_MASK, 0) in dexopt()
[all …]
Dotapreopt_parameters.h41 int dexopt_flags; variable
Dotapreopt.cpp485 parameters_.dexopt_flags, in Dexopt()
510 if ((parameters_.dexopt_flags & DEXOPT_PROFILE_GUIDED) == 0) { in RunPreopt()
515 parameters_.dexopt_flags &= ~DEXOPT_PROFILE_GUIDED; in RunPreopt()
Ddexopt.h119 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter,