HomeSort by relevance Sort by last modified time
    Searched refs:mMountService (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/os/storage/
StorageManager.java 68 private final IMountService mMountService;
317 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
318 if (mMountService == null) {
340 mMountService.registerListener(mBinderListener);
373 mMountService.unregisterListener(mBinderListener);
389 mMountService.setUsbMassStorageEnabled(true);
402 mMountService.setUsbMassStorageEnabled(false);
416 return mMountService.isUsbMassStorageConnected();
431 return mMountService.isUsbMassStorageEnabled();
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce)
    [all...]
  /frameworks/base/native/android/
storage_manager.cpp 67 sp<IMountService> mMountService;
94 mMountService = interface_cast<IMountService>(sm->getService(String16("mount")));
95 if (mMountService == NULL) {
141 mMountService->mountObb(rawPath16, canonicalPath16, key16, mObbActionListener, cb->nonce);
147 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce);
152 return mMountService->isObbMounted(filename16);
158 if (mMountService->getMountedObbPath(filename16, path16)) {
  /frameworks/base/core/java/com/android/internal/os/storage/
ExternalStorageFormatter.java 43 private IMountService mMountService = null;
234 if (mMountService == null) {
237 mMountService = IMountService.Stub.asInterface(service);
242 return mMountService;
  /frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
BackupRestoreConfirmation.java 65 IMountService mMountService;
159 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
264 return (mMountService.getEncryptionState() != IMountService.ENCRYPTION_STATE_NONE);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 78 private IMountService mMountService;
204 if (mMountService == null) {
207 mMountService = IMountService.Stub.asInterface(service);
212 return mMountService;
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 206 private IMountService mMountService;
781 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
    [all...]

Completed in 243 milliseconds