Lines Matching refs:dexopt_flags
1838 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()
2097 << "dexopt flags contains unknown fields: " << dexopt_flags; in dexopt()
2111 bool is_public = (dexopt_flags & DEXOPT_PUBLIC) != 0; in dexopt()
2112 bool debuggable = (dexopt_flags & DEXOPT_DEBUGGABLE) != 0; in dexopt()
2113 bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0; in dexopt()
2114 bool profile_guided = (dexopt_flags & DEXOPT_PROFILE_GUIDED) != 0; in dexopt()
2115 bool is_secondary_dex = (dexopt_flags & DEXOPT_SECONDARY_DEX) != 0; in dexopt()
2116 bool background_job_compile = (dexopt_flags & DEXOPT_IDLE_BACKGROUND_JOB) != 0; in dexopt()
2117 bool enable_hidden_api_checks = (dexopt_flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) != 0; in dexopt()
2118 bool generate_compact_dex = (dexopt_flags & DEXOPT_GENERATE_COMPACT_DEX) != 0; in dexopt()
2119 bool generate_app_image = (dexopt_flags & DEXOPT_GENERATE_APP_IMAGE) != 0; in dexopt()
2120 bool for_restore = (dexopt_flags & DEXOPT_FOR_RESTORE) != 0; in dexopt()
2131 if (process_secondary_dex_dexopt(dex_path, pkgname, dexopt_flags, volume_uuid, uid, in dexopt()
2147 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0); in dexopt()
2148 CHECK((dexopt_flags & DEXOPT_STORAGE_DE) == 0); in dexopt()