Searched refs:isProfileUsable (Results 1 – 9 of 9) sorted by relevance
/art/libartservice/service/javatests/com/android/server/art/ |
D | SecondaryDexopterTest.java | 205 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()
|
D | ArtManagerLocalTest.java | 276 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()
|
D | PrimaryDexopterParameterizedTest.java | 249 lenient().when(mArtd.isProfileUsable(any(), any())).thenReturn(true); in setUp()
|
D | PrimaryDexopterTest.java | 117 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/ |
D | IArtd.aidl | 52 boolean isProfileUsable(in com.android.server.art.ProfilePath profile, in isProfileUsable() method
|
/art/libartservice/service/java/com/android/server/art/ |
D | Utils.java | 392 if (artd.isProfileUsable(refProfile, dexPath)) { in getOrInitReferenceProfile()
|
/art/artd/ |
D | artd.h | 128 ndk::ScopedAStatus isProfileUsable(const aidl::com::android::server::art::ProfilePath& in_profile,
|
D | artd_test.cc | 1339 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()
|
D | artd.cc | 610 ndk::ScopedAStatus Artd::isProfileUsable(const ProfilePath& in_profile, in isProfileUsable() function in art::artd::Artd
|