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

/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.java196 assertTrue("mounted path should still be mounted!", mSm.isObbMounted(obbFilePath));
204 mSm.isObbMounted(obbFilePath));
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java152 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
176 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
207 assertFalse("OBB should not be mounted", sm.isObbMounted(file.getPath()));
239 sm.isObbMounted(outFile.getPath()));
255 sm.isObbMounted(outFile.getPath()));
/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/include/storage/
H A DIMountService.h70 virtual bool isObbMounted(const String16& filename) = 0;
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java515 public boolean isObbMounted(String rawPath) { method in class:StorageManager
519 return mMountService.isObbMounted(rawPath);
H A DIMountService.java541 public boolean isObbMounted(String rawPath) throws RemoteException { method in class:IMountService.Stub.Proxy
1076 boolean status = isObbMounted(filename);
1224 public boolean isObbMounted(String rawPath) throws RemoteException; method in interface:IMountService
/frameworks/base/libs/storage/
H A DIMountService.cpp477 bool isObbMounted(const String16& filename) function in class:android::BpMountService
483 ALOGD("isObbMounted could not contact remote\n");
488 ALOGD("isObbMounted caught exception %d\n", err);
/frameworks/base/services/java/com/android/server/
H A DMountService.java1901 public boolean isObbMounted(String rawPath) { method in class:MountService

Completed in 135 milliseconds