Home
last modified time | relevance | path

Searched refs:mMountService (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/storage/
DStorageManager.java122 private final IMountService mMountService; field in StorageManager
330 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount")); in StorageManager()
331 if (mMountService == null) { in StorageManager()
348 mMountService.registerListener(delegate); in registerListener()
369 mMountService.unregisterListener(delegate); in unregisterListener()
447 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce); in mountObb()
482 mMountService.unmountObb(rawPath, force, mObbActionListener, nonce); in unmountObb()
499 return mMountService.isObbMounted(rawPath); in isObbMounted()
518 return mMountService.getMountedObbPath(rawPath); in getMountedObbPath()
527 return Arrays.asList(mMountService.getDisks()); in getDisks()
[all …]
/frameworks/base/native/android/
Dstorage_manager.cpp67 sp<IMountService> mMountService; member
94 mMountService = interface_cast<IMountService>(sm->getService(String16("mount"))); in initialize()
95 if (mMountService == NULL) { in initialize()
141 mMountService->mountObb(rawPath16, canonicalPath16, key16, mObbActionListener, cb->nonce); in mountObb()
147 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce); in unmountObb()
152 return mMountService->isObbMounted(filename16); in isObbMounted()
158 if (mMountService->getMountedObbPath(filename16, path16)) { in getMountedObbPath()
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
DBackupRestoreConfirmation.java67 IMountService mMountService; field in BackupRestoreConfirmation
161 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount")); in onCreate()
274 return mMountService.getEncryptionState() in deviceIsEncrypted()
276 && mMountService.getPasswordType() in deviceIsEncrypted()
/frameworks/base/services/core/java/com/android/server/
DMountService.java158 private MountService mMountService; field in MountService.Lifecycle
166 mMountService = new MountService(getContext()); in onStart()
167 publishBinderService("mount", mMountService); in onStart()
168 mMountService.start(); in onStart()
174 mMountService.systemReady(); in onBootPhase()
176 mMountService.bootCompleted(); in onBootPhase()
182 mMountService.mCurrentUserId = userHandle; in onSwitchUser()
187 mMountService.onUnlockUser(userHandle); in onUnlockUser()
192 mMountService.onCleanupUser(userHandle); in onCleanupUser()
/frameworks/base/services/backup/java/com/android/server/backup/
DBackupManagerService.java270 private IMountService mMountService; field in BackupManagerService
1071 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount")); in BackupManagerService()
3968 return mMountService.getEncryptionState() in deviceIsEncrypted()
3970 && mMountService.getPasswordType() in deviceIsEncrypted()