• Home
  • Raw
  • Download

Lines Matching refs:dexopt_flags

1502 static bool validate_dexopt_storage_flags(int dexopt_flags,  in validate_dexopt_storage_flags()  argument
1505 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) { in validate_dexopt_storage_flags()
1507 if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1511 } else if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) { in validate_dexopt_storage_flags()
1634 const char* pkgname, int dexopt_flags, const char* volume_uuid, int uid, in process_secondary_dex_dexopt() argument
1646 if (!validate_dexopt_storage_flags(dexopt_flags, &storage_flag, error_msg)) { in process_secondary_dex_dexopt()
1763 ((dexopt_flags & DEXOPT_FORCE) != 0)) { in process_secondary_dex_dexopt()
1770 *is_public_out = ((dexopt_flags & DEXOPT_PUBLIC) != 0) && is_file_public(dex_path); in process_secondary_dex_dexopt()
1788 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter, in dexopt() argument
1796 CHECK_EQ(dexopt_flags & ~DEXOPT_MASK, 0) in dexopt()
1797 << "dexopt flags contains unknown fields: " << dexopt_flags; in dexopt()
1821 bool is_public = (dexopt_flags & DEXOPT_PUBLIC) != 0; in dexopt()
1822 bool debuggable = (dexopt_flags & DEXOPT_DEBUGGABLE) != 0; in dexopt()
1823 bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0; in dexopt()
1824 bool profile_guided = (dexopt_flags & DEXOPT_PROFILE_GUIDED) != 0; in dexopt()
1825 bool is_secondary_dex = (dexopt_flags & DEXOPT_SECONDARY_DEX) != 0; in dexopt()
1826 bool background_job_compile = (dexopt_flags & DEXOPT_IDLE_BACKGROUND_JOB) != 0; in dexopt()
1827 bool enable_hidden_api_checks = (dexopt_flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) != 0; in dexopt()
1828 bool generate_compact_dex = (dexopt_flags & DEXOPT_GENERATE_COMPACT_DEX) != 0; in dexopt()
1829 bool generate_app_image = (dexopt_flags & DEXOPT_GENERATE_APP_IMAGE) != 0; in dexopt()
1830 bool for_restore = (dexopt_flags & DEXOPT_FOR_RESTORE) != 0; in dexopt()
1841 pkgname, dexopt_flags, volume_uuid, uid,instruction_set, compiler_filter, in dexopt()
1863 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0); in dexopt()
1864 CHECK((dexopt_flags & DEXOPT_STORAGE_DE) == 0); in dexopt()