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

/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java552 public String getVolumeState(String mountPoint) { method in class:StorageManager
555 return mMountService.getVolumeState(mountPoint);
H A DIMountService.java233 public String getVolumeState(String mountPoint) throws RemoteException { method in class:IMountService.Stub.Proxy
925 String state = getVolumeState(mountPoint);
1218 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.java824 if (getVolumeState(path).equals(Environment.MEDIA_BAD_REMOVAL)) {
863 state = getVolumeState(path);
990 if (!getVolumeState(path).equals(Environment.MEDIA_MOUNTED)) {
1087 && Environment.MEDIA_SHARED.equals(getVolumeState(primary.getPath()))) {
1454 String vs = getVolumeState(path);
1495 public String getVolumeState(String mountPoint) { method in class:MountService
1499 Slog.w(TAG, "getVolumeState(" + mountPoint + "): Unknown volume");
1527 String volState = getVolumeState(path);
1583 mounted = Environment.MEDIA_MOUNTED.equals(getVolumeState(primary.getPath()));

Completed in 2584 milliseconds