Home
last modified time | relevance | path

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

/aosp12/frameworks/native/cmds/installd/
H A Dinstalld_constants.h50 constexpr int DEXOPT_STORAGE_CE = 1 << 7; variable
68 | DEXOPT_STORAGE_CE
H A Dotapreopt.cpp79 static_assert(DEXOPT_STORAGE_CE == 1 << 7, "DEXOPT_STORAGE_CE unexpected.");
H A Ddexopt.cpp1424 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) { in validate_dexopt_storage_flags()
1732 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0); in dexopt()
/aosp12/frameworks/native/cmds/installd/tests/
H A Dinstalld_dexopt_test.cpp610 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
616 CompileSecondaryDex(secondary_dex_ce_link_, DEXOPT_STORAGE_CE, in TEST_F()
623 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
644 CompileSecondaryDex(secondary_dex_ce_ + "not.there", DEXOPT_STORAGE_CE, in TEST_F()
661 CompileSecondaryDex("/data/data/random.app/secondary.jar", DEXOPT_STORAGE_CE, in TEST_F()
670 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in TEST_F()
881 CompileSecondaryDex(secondary_dex_ce_, DEXOPT_STORAGE_CE, in SetUp()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java32 import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
531 dexoptFlags |= DEXOPT_STORAGE_CE; in dexOptSecondaryDexPathLI()
909 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) { in printDexoptFlags()
H A DInstaller.java69 public static final int DEXOPT_STORAGE_CE = 1 << 7; field in Installer