Home
last modified time | relevance | path

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

/art/libartservice/service/javatests/com/android/server/art/
DDexUseManagerTest.java268 .when(mArtd.getDexFileVisibility(BASE_APK)) in verifyPrimaryDexMultipleEntries()
271 .when(mArtd.getDexFileVisibility(SPLIT_APK)) in verifyPrimaryDexMultipleEntries()
469 .when(mArtd.getDexFileVisibility(mCeDir + "/foo.apk")) in verifySecondaryDexMultipleEntries()
472 .when(mArtd.getDexFileVisibility(mCeDir + "/bar.apk")) in verifySecondaryDexMultipleEntries()
475 .when(mArtd.getDexFileVisibility(mCeDir + "/baz.apk")) in verifySecondaryDexMultipleEntries()
565 when(mArtd.getDexFileVisibility(mCeDir + "/foo.apk")) in testCheckedSecondaryDexPublic()
584 when(mArtd.getDexFileVisibility(mCeDir + "/foo.apk")) in testCheckedSecondaryDexPrivate()
615 when(mArtd.getDexFileVisibility(mCeDir + "/foo.apk")).thenReturn(FileVisibility.NOT_FOUND); in testCheckedSecondaryDexNotFound()
634 when(mArtd.getDexFileVisibility(mCeDir + "/foo.apk")) in testCheckedSecondaryDexFilteredDueToVisibility()
655 .when(mArtd.getDexFileVisibility( in testCleanupDeletedPackage()
[all …]
DPrimaryDexopterTest.java147 .when(mArtd.getDexFileVisibility(mDexPath)) in setUp()
150 .when(mArtd.getDexFileVisibility(mSplit0DexPath)) in setUp()
866 doReturn(FileVisibility.NOT_FOUND).when(mArtd).getDexFileVisibility(mDexPath); in testDexoptPreRebootDexNotFound()
867 doReturn(FileVisibility.NOT_FOUND).when(mArtd).getDexFileVisibility(mSplit0DexPath); in testDexoptPreRebootDexNotFound()
879 doReturn(FileVisibility.OTHER_READABLE).when(mArtd).getDexFileVisibility(mDexPath); in testDexoptPreRebootSomeDexNotFound()
880 doReturn(FileVisibility.NOT_FOUND).when(mArtd).getDexFileVisibility(mSplit0DexPath); in testDexoptPreRebootSomeDexNotFound()
DPrimaryDexopterParameterizedTest.java320 .getDexFileVisibility("/somewhere/app/foo/base.apk"); in testDexopt()
323 .getDexFileVisibility("/somewhere/app/foo/split_0.apk"); in testDexopt()
/art/artd/binder/com/android/server/art/
DIArtd.aidl134 com.android.server.art.FileVisibility getDexFileVisibility(@utf8InCpp String dexFile); in getDexFileVisibility() method
/art/libartservice/service/java/com/android/server/art/
DPrimaryDexopter.java123 return mInjector.getArtd().getDexFileVisibility(dexInfo.dexPath()) in isDexFileFound()
DDexUseManagerLocal.java317 int visibility = checkDexFile ? getDexFileVisibility(dexPath) in getSecondaryDexInfoImpl()
633 private @FileVisibility int getDexFileVisibility(@NonNull String dexPath) { in getDexFileVisibility() method in DexUseManagerLocal
635 return mInjector.getArtd().getDexFileVisibility(dexPath); in getDexFileVisibility()
678 entry.setValue(getDexFileVisibility(entry.getKey())); in cleanup()
/art/artd/
Dartd.h165 ndk::ScopedAStatus getDexFileVisibility(
Dartd_test.cc1813 TestGetVisibilityOtherReadable(&Artd::getDexFileVisibility, dex_file_, dex_file_); in TEST_F()
1817 TestGetVisibilityNotOtherReadable(&Artd::getDexFileVisibility, dex_file_, dex_file_); in TEST_F()
1821 TestGetVisibilityNotFound(&Artd::getDexFileVisibility, dex_file_); in TEST_F()
1825 TestGetVisibilityPermissionDenied(&Artd::getDexFileVisibility, dex_file_, dex_file_); in TEST_F()
Dartd.cc797 ndk::ScopedAStatus Artd::getDexFileVisibility(const std::string& in_dexFile, in getDexFileVisibility() function in art::artd::Artd