Home
last modified time | relevance | path

Searched refs:has_dex_files (Results 1 – 3 of 3) sorted by relevance

/art/runtime/oat/
Doat_file_assistant.cc1025 std::optional<bool> has_dex_files = oat_file_assistant_->HasDexFiles(&error_msg); in GetDexOptNeeded() local
1026 if (has_dex_files.has_value()) { in GetDexOptNeeded()
1027 if (*has_dex_files) { in GetDexOptNeeded()
1322 std::optional<bool> has_dex_files = HasDexFiles(&error_msg); in GetOptimizationStatus() local
1323 if (!has_dex_files.has_value()) { in GetOptimizationStatus()
1329 } else if (!has_dex_files.value()) { in GetOptimizationStatus()
Doat_file_assistant_test.cc228 std::optional<bool> has_dex_files = oat_file_assistant->HasDexFiles(&error_msg); in ExpectHasDexFiles() local
229 ASSERT_TRUE(has_dex_files.has_value()) << error_msg; in ExpectHasDexFiles()
230 EXPECT_EQ(*has_dex_files, expected_value); in ExpectHasDexFiles()
/art/artd/
Dartd.cc975 std::optional<bool> has_dex_files = oat_file_assistant->HasDexFiles(&error_msg); in getDexoptNeeded() local
976 if (!has_dex_files.has_value()) { in getDexoptNeeded()
979 _aidl_return->hasDexCode = *has_dex_files; in getDexoptNeeded()