Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dinstalld_constants.h50 constexpr int DEXOPT_STORAGE_CE = 1 << 7; variable
68 | DEXOPT_STORAGE_CE
Dotapreopt.cpp79 static_assert(DEXOPT_STORAGE_CE == 1 << 7, "DEXOPT_STORAGE_CE unexpected.");
Ddexopt.cpp1841 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) { in validate_dexopt_storage_flags()
2147 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0); in dexopt()
/frameworks/native/cmds/installd/tests/
Dinstalld_dexopt_test.cpp561 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
567 CompileSecondaryDex(secondary_dex_ce_link_, DEXOPT_STORAGE_CE, in TEST_F()
574 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
595 CompileSecondaryDex(secondary_dex_ce_ + "not.there", DEXOPT_STORAGE_CE, in TEST_F()
612 CompileSecondaryDex("/data/data/random.app/secondary.jar", DEXOPT_STORAGE_CE, in TEST_F()
621 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
822 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in SetUp()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageDexOptimizer.java31 import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
389 dexoptFlags |= DEXOPT_STORAGE_CE; in dexOptSecondaryDexPathLI()
688 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) { in printDexoptFlags()
DInstaller.java62 public static final int DEXOPT_STORAGE_CE = 1 << 7; field in Installer