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

/frameworks/base/core/tests/coretests/src/com/android/server/
H A DMountServiceTests.java150 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
174 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
205 assertFalse("OBB should not be mounted", sm.isObbMounted(file.getPath()));
237 sm.isObbMounted(outFile.getPath()));
253 sm.isObbMounted(outFile.getPath()));
/frameworks/base/native/android/
H A Dstorage_manager.cpp141 int isObbMounted(const char* filename) { function in struct:AStorageManager
143 return mMountService->isObbMounted(filename16);
188 return mgr->isObbMounted(filename) != 0;
/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/include/storage/
H A DIMountService.h67 virtual bool isObbMounted(const String16& filename) = 0;
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java496 public boolean isObbMounted(String filename) { method in class:StorageManager
502 return mMountService.isObbMounted(filename);
H A DIMountService.java539 public boolean isObbMounted(String filename) throws RemoteException { method in class:IMountService.Stub.Proxy
1075 boolean status = isObbMounted(filename);
1223 public boolean isObbMounted(String filename) throws RemoteException; method in interface:IMountService
/frameworks/base/libs/storage/
H A DIMountService.cpp476 bool isObbMounted(const String16& filename) function in class:android::BpMountService
482 ALOGD("isObbMounted could not contact remote\n");
487 ALOGD("isObbMounted caught exception %d\n", err);
/frameworks/base/services/java/com/android/server/
H A DMountService.java1748 public boolean isObbMounted(String filename) { method in class:MountService

Completed in 222 milliseconds