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/";
29 constexpr const char* PKG_DIR_POSTFIX = "";
31 constexpr const char* PKG_LIB_POSTFIX = "/lib";
33 constexpr const char* CACHE_DIR_POSTFIX = "/cache";
34 constexpr const char* CODE_CACHE_DIR_POSTFIX = "/code_cache";
36 constexpr const char* APP_SUBDIR = "app/"; // sub-directory under ANDROID_DATA
37 constexpr const char* PRIV_APP_SUBDIR = "priv-app/"; // sub-directory under ANDROID_DATA
38 constexpr const char* EPHEMERAL_APP_SUBDIR = "app-ephemeral/"; // sub-directory under ANDROID_DATA
40 constexpr const char* APP_LIB_SUBDIR = "app-lib/"; // sub-directory under ANDROID_DATA
42 constexpr const char* MEDIA_SUBDIR = "media/"; // sub-directory under ANDROID_DATA
44 constexpr const char* PROFILES_SUBDIR = "misc/profiles"; // sub-directory under ANDROID_DATA
48 constexpr const char* PRIVATE_APP_SUBDIR = "app-private/"; // sub-directory under ANDROID_DATA
52 constexpr const char* DALVIK_CACHE_POSTFIX = "/classes.dex";
53 constexpr const char* DALVIK_CACHE_POSTFIX2 = "@classes.dex";
55 constexpr const char* IDMAP_PREFIX = "/data/resource-cache/";
56 constexpr const char* IDMAP_SUFFIX = "@idmap";
58 constexpr size_t PKG_NAME_MAX = 128u; /* largest allowed package name */
59 constexpr size_t PKG_PATH_MAX = 256u; /* max size of any path we use */
62 constexpr int FLAG_STORAGE_DE = 1 << 0;
63 constexpr int FLAG_STORAGE_CE = 1 << 1;
66 constexpr int FLAG_CLEAR_CACHE_ONLY = 1 << 8;
67 constexpr int FLAG_CLEAR_CODE_CACHE_ONLY = 1 << 9;
70 constexpr int DEXOPT_DEX2OAT_NEEDED = 1;
71 constexpr int DEXOPT_PATCHOAT_NEEDED = 2;
72 constexpr int DEXOPT_SELF_PATCHOAT_NEEDED = 3;
78 constexpr int DEXOPT_PUBLIC = 1 << 1;
79 constexpr int DEXOPT_SAFEMODE = 1 << 2;
80 constexpr int DEXOPT_DEBUGGABLE = 1 << 3;
81 constexpr int DEXOPT_BOOTCOMPLETE = 1 << 4;
82 constexpr int DEXOPT_PROFILE_GUIDED = 1 << 5;
83 constexpr int DEXOPT_OTA = 1 << 6;
86 constexpr int DEXOPT_MASK =