Home
last modified time | relevance | path

Searched refs:commitTmpProfile (Results 1 – 7 of 7) sorted by relevance

/art/artd/binder/com/android/server/art/
DIArtd.aidl63 void commitTmpProfile(in com.android.server.art.ProfilePath.TmpProfilePath profile); in commitTmpProfile() method
/art/libartservice/service/javatests/com/android/server/art/
DPrimaryDexopterTest.java279 inOrder.verify(mArtd).commitTmpProfile(deepEq(mPublicOutputProfile.profilePath)); in testDexoptUsesPrebuiltProfile()
321 inOrder.verify(mArtd).commitTmpProfile(deepEq(mPrivateOutputProfile.profilePath)); in testDexoptMergesProfiles()
354 verify(mArtd, never()).commitTmpProfile(any()); in testDexoptMergesProfilesMergeFailed()
393 verify(mArtd, never()).commitTmpProfile(deepEq(mPublicOutputProfile.profilePath)); in testDexoptDeletesProfileOnFailure()
DSecondaryDexopterTest.java199 verify(mArtd).commitTmpProfile(deepEq(mDex1PrivateOutputProfile.profilePath)); in testDexopt()
/art/artd/
Dartd.h104 ndk::ScopedAStatus commitTmpProfile(
Dartd_test.cc1405 TEST_F(ArtdTest, commitTmpProfile) { in TEST_F() argument
1410 EXPECT_TRUE(artd_->commitTmpProfile(tmp_profile_path).isOk()); in TEST_F()
1418 ndk::ScopedAStatus status = artd_->commitTmpProfile(tmp_profile_path); in TEST_F()
Dartd.cc563 ndk::ScopedAStatus Artd::commitTmpProfile(const TmpProfilePath& in_profile) { in commitTmpProfile() function in art::artd::Artd
/art/libartservice/service/java/com/android/server/art/
DDexopter.java512 mInjector.getArtd().commitTmpProfile(profile); in commitProfileChanges()