Searched defs:getVolumeState (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java555 public String getVolumeState(String mountPoint) { method in class:StorageManager
558 return mMountService.getVolumeState(mountPoint);
H A DIMountService.java231 public String getVolumeState(String mountPoint) throws RemoteException { method in class:IMountService.Stub.Proxy
943 String state = getVolumeState(mountPoint);
1245 public String getVolumeState(String mountPoint) throws RemoteException; method in interface:IMountService
/frameworks/base/libs/storage/
H A DIMountService.cpp218 int32_t getVolumeState(const String16& mountPoint) function in class:android::BpMountService
224 ALOGD("getVolumeState could not contact remote\n");
229 ALOGD("getVolumeState caught exception %d\n", err);
/frameworks/base/services/java/com/android/server/
H A DMountService.java850 if (getVolumeState(path).equals(Environment.MEDIA_BAD_REMOVAL)) {
891 state = getVolumeState(path);
1018 if (!getVolumeState(path).equals(Environment.MEDIA_MOUNTED)) {
1115 && Environment.MEDIA_SHARED.equals(getVolumeState(primary.getPath()))) {
1491 String vs = getVolumeState(path);
1532 public String getVolumeState(String mountPoint) { method in class:MountService
1536 Slog.w(TAG, "getVolumeState(" + mountPoint + "): Unknown volume");
1564 String volState = getVolumeState(path);
1620 mounted = Environment.MEDIA_MOUNTED.equals(getVolumeState(primary.getPath()));

Completed in 176 milliseconds