Home | History | Annotate | Download | only in installd

Lines Matching refs:constexpr

26 constexpr const char* PRIMARY_USER_PREFIX = "data/";
27 constexpr const char* SECONDARY_USER_PREFIX = "user/";
31 constexpr const char* DALVIK_CACHE_POSTFIX = "@classes.dex";
33 constexpr size_t PKG_NAME_MAX = 128u; /* largest allowed package name */
34 constexpr size_t PKG_PATH_MAX = 1024u; /* max size of any path we use */
40 constexpr int DEXOPT_PUBLIC = 1 << 1;
41 constexpr int DEXOPT_DEBUGGABLE = 1 << 2;
42 constexpr int DEXOPT_BOOTCOMPLETE = 1 << 3;
43 constexpr int DEXOPT_PROFILE_GUIDED = 1 << 4;
44 constexpr int DEXOPT_SECONDARY_DEX = 1 << 5;
49 constexpr int DEXOPT_FORCE = 1 << 6;
50 constexpr int DEXOPT_STORAGE_CE = 1 << 7;
51 constexpr int DEXOPT_STORAGE_DE = 1 << 8;
54 constexpr int DEXOPT_IDLE_BACKGROUND_JOB = 1 << 9;
55 constexpr int DEXOPT_ENABLE_HIDDEN_API_CHECKS = 1 << 10;
56 constexpr int DEXOPT_GENERATE_COMPACT_DEX = 1 << 11;
57 constexpr int DEXOPT_GENERATE_APP_IMAGE = 1 << 12;
60 constexpr int DEXOPT_MASK =
75 constexpr int FLAG_STORAGE_DE = 1 << 0;
76 constexpr int FLAG_STORAGE_CE = 1 << 1;