Lines Matching refs:dexopt_flags

1799 static bool validate_dexopt_storage_flags(int dexopt_flags,  in validate_dexopt_storage_flags()  argument
1802 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) { in validate_dexopt_storage_flags()
1804 if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1808 } else if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1825 int dexopt_flags, const char* volume_uuid, int uid, const char* instruction_set, in process_secondary_dex_dexopt() argument
1831 if (!validate_dexopt_storage_flags(dexopt_flags, &storage_flag, error_msg)) { in process_secondary_dex_dexopt()
1928 ((dexopt_flags & DEXOPT_FORCE) != 0)) { in process_secondary_dex_dexopt()
1935 *is_public_out = ((dexopt_flags & DEXOPT_PUBLIC) != 0) && is_file_public(dex_path); in process_secondary_dex_dexopt()
1952 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter, in dexopt() argument
1959 CHECK_EQ(dexopt_flags & ~DEXOPT_MASK, 0) in dexopt()
1960 << "dexopt flags contains unknown fields: " << dexopt_flags; in dexopt()
1974 bool is_public = (dexopt_flags & DEXOPT_PUBLIC) != 0; in dexopt()
1975 bool debuggable = (dexopt_flags & DEXOPT_DEBUGGABLE) != 0; in dexopt()
1976 bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0; in dexopt()
1977 bool profile_guided = (dexopt_flags & DEXOPT_PROFILE_GUIDED) != 0; in dexopt()
1978 bool is_secondary_dex = (dexopt_flags & DEXOPT_SECONDARY_DEX) != 0; in dexopt()
1979 bool background_job_compile = (dexopt_flags & DEXOPT_IDLE_BACKGROUND_JOB) != 0; in dexopt()
1980 bool enable_hidden_api_checks = (dexopt_flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) != 0; in dexopt()
1981 bool generate_compact_dex = (dexopt_flags & DEXOPT_GENERATE_COMPACT_DEX) != 0; in dexopt()
1982 bool generate_app_image = (dexopt_flags & DEXOPT_GENERATE_APP_IMAGE) != 0; in dexopt()
1987 if (process_secondary_dex_dexopt(dex_path, pkgname, dexopt_flags, volume_uuid, uid, in dexopt()
2003 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0); in dexopt()
2004 CHECK((dexopt_flags & DEXOPT_STORAGE_DE) == 0); in dexopt()