Searched refs:isObbMounted (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java140 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
164 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
194 assertFalse("OBB should not be mounted", sm.isObbMounted(file.getPath()));
226 sm.isObbMounted(outFile.getPath()));
242 sm.isObbMounted(outFile.getPath()));
H A DMockStorageManager.java229 public boolean isObbMounted(String rawPath) throws RemoteException { method in class:MockStorageManager
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java276 assertTrue("Cannot open file when OBB is not mounted!", mSm.isObbMounted(obbPath));
364 success &= mSm.isObbMounted(obbListener.officialPath());
366 success &= !mSm.isObbMounted(obbListener.officialPath());
398 mSm.isObbMounted(obbListener.officialPath()));
401 mSm.isObbMounted(obbListener.officialPath()));
427 success &= !mSm.isObbMounted(obbFilePath);
450 assertFalse("Obb should NOT be mounted, but SM reports it is!", mSm.isObbMounted(
565 assertTrue("OBB " + filePath + " is not currently mounted!", mSm.isObbMounted(filePath));
H A DStorageManagerIntegrationTest.java203 assertTrue("mounted path should still be mounted!", mSm.isObbMounted(obbFilePath));
211 mSm.isObbMounted(obbFilePath));
/frameworks/base/native/android/
H A Dstorage_manager.cpp150 int isObbMounted(const char* filename) { function in struct:AStorageManager
152 return mMountService->isObbMounted(filename16);
197 return mgr->isObbMounted(filename) != 0;
/frameworks/base/libs/storage/include/storage/
H A DIMountService.h70 virtual bool isObbMounted(const String16& filename) = 0;
/frameworks/base/core/java/android/os/storage/
H A DIStorageManager.aidl163 boolean isObbMounted(in String rawPath) = 23;
H A DStorageManager.java617 public boolean isObbMounted(String rawPath) { method in class:StorageManager
621 return mStorageManager.isObbMounted(rawPath);
/frameworks/base/libs/storage/
H A DIMountService.cpp486 bool isObbMounted(const String16& filename) function in class:android::BpMountService
492 ALOGD("isObbMounted could not contact remote\n");
497 ALOGD("isObbMounted caught exception %d\n", err);
/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java2538 public boolean isObbMounted(String rawPath) { method in class:StorageManagerService

Completed in 844 milliseconds