Home
last modified time | relevance | path

Searched refs:isProfileUsable (Results 1 – 9 of 9) sorted by relevance

/art/libartservice/service/javatests/com/android/server/art/
DSecondaryDexopterTest.java205 verify(mArtd, never()).isProfileUsable(deepEq(mDex2RefProfile), any()); in testDexopt()
220 verify(mArtd, never()).isProfileUsable(deepEq(mDex3RefProfile), any()); in testDexopt()
284 lenient().when(mArtd.isProfileUsable(deepEq(mDex1RefProfile), any())).thenReturn(true); in prepareProfiles()
290 lenient().when(mArtd.isProfileUsable(deepEq(mDex2RefProfile), any())).thenReturn(true); in prepareProfiles()
294 lenient().when(mArtd.isProfileUsable(deepEq(mDex3RefProfile), any())).thenReturn(true); in prepareProfiles()
DArtManagerLocalTest.java276 lenient().when(mArtd.isProfileUsable(any(), any())).thenReturn(false); in setUp()
870 when(mArtd.isProfileUsable(deepEq(refProfile), eq(dexPath))).thenReturn(true); in testSnapshotAppProfile()
917 when(mArtd.isProfileUsable(deepEq(refProfile), eq(dexPath))).thenReturn(false); in testSnapshotAppProfileFromDm()
958 when(mArtd.isProfileUsable(deepEq(refProfile), eq(dexPath))).thenReturn(false); in testSnapshotAppProfileFromEmbeddedProfile()
976 when(mArtd.isProfileUsable(deepEq(refProfile), eq(dexPath))).thenReturn(false); in testSnapshotAppProfileDisableEmbeddedProfile()
997 when(mArtd.isProfileUsable(deepEq(refProfile), eq(dexPath))).thenReturn(true); in testSnapshotAppProfileSplit()
DPrimaryDexopterParameterizedTest.java249 lenient().when(mArtd.isProfileUsable(any(), any())).thenReturn(true); in setUp()
DPrimaryDexopterTest.java117 lenient().when(mArtd.isProfileUsable(any(), any())).thenReturn(false); in setUp()
981 lenient().when(mArtd.isProfileUsable(deepEq(profile), any())).thenAnswer(invocation -> { in makeProfileUsable()
/art/artd/binder/com/android/server/art/
DIArtd.aidl52 boolean isProfileUsable(in com.android.server.art.ProfilePath profile, in isProfileUsable() method
/art/libartservice/service/java/com/android/server/art/
DUtils.java392 if (artd.isProfileUsable(refProfile, dexPath)) { in getOrInitReferenceProfile()
/art/artd/
Dartd.h128 ndk::ScopedAStatus isProfileUsable(const aidl::com::android::server::art::ProfilePath& in_profile,
Dartd_test.cc1339 TEST_F(ArtdTest, isProfileUsable) { in TEST_F() argument
1359 EXPECT_TRUE(artd_->isProfileUsable(profile_path_.value(), dex_file_, &result).isOk()); in TEST_F()
1372 EXPECT_TRUE(artd_->isProfileUsable(profile_path_.value(), dex_file_, &result).isOk()); in TEST_F()
1380 EXPECT_TRUE(artd_->isProfileUsable(profile_path_.value(), dex_file_, &result).isOk()); in TEST_F()
1392 ndk::ScopedAStatus status = artd_->isProfileUsable(profile_path_.value(), dex_file_, &result); in TEST_F()
Dartd.cc610 ndk::ScopedAStatus Artd::isProfileUsable(const ProfilePath& in_profile, in isProfileUsable() function in art::artd::Artd