Searched refs:getDexFileVisibility (Results 1 – 9 of 9) sorted by relevance
268 .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 …]
147 .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()
320 .getDexFileVisibility("/somewhere/app/foo/base.apk"); in testDexopt()323 .getDexFileVisibility("/somewhere/app/foo/split_0.apk"); in testDexopt()
134 com.android.server.art.FileVisibility getDexFileVisibility(@utf8InCpp String dexFile); in getDexFileVisibility() method
123 return mInjector.getArtd().getDexFileVisibility(dexInfo.dexPath()) in isDexFileFound()
317 int visibility = checkDexFile ? getDexFileVisibility(dexPath) in getSecondaryDexInfoImpl()633 private @FileVisibility int getDexFileVisibility(@NonNull String dexPath) { in getDexFileVisibility() method in DexUseManagerLocal635 return mInjector.getArtd().getDexFileVisibility(dexPath); in getDexFileVisibility()678 entry.setValue(getDexFileVisibility(entry.getKey())); in cleanup()
165 ndk::ScopedAStatus getDexFileVisibility(
1813 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()
797 ndk::ScopedAStatus Artd::getDexFileVisibility(const std::string& in_dexFile, in getDexFileVisibility() function in art::artd::Artd