Searched defs:mMountService (Results 1 - 5 of 5) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/
H A DMountService.java158 private MountService mMountService; field in class:MountService.Lifecycle
166 mMountService = new MountService(getContext());
167 publishBinderService("mount", mMountService);
168 mMountService.start();
174 mMountService.systemReady();
176 mMountService.bootCompleted();
182 mMountService.mCurrentUserId = userHandle;
187 mMountService.onUnlockUser(userHandle);
192 mMountService.onCleanupUser(userHandle);
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java271 private IMountService mMountService; field in class:BackupManagerService
1082 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
3985 return mMountService.getEncryptionState()
3987 && mMountService.getPasswordType()
/frameworks/base/native/android/
H A Dstorage_manager.cpp67 sp<IMountService> mMountService; member in struct:AStorageManager
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/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java67 IMountService mMountService; field in class:BackupRestoreConfirmation
161 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
274 return mMountService.getEncryptionState()
276 && mMountService.getPasswordType()
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java148 private final IMountService mMountService; field in class:StorageManager
356 mMountService = IMountService.Stub.asInterface(ServiceManager.getService("mount"));
357 if (mMountService == null) {
374 mMountService.registerListener(delegate);
395 mMountService.unregisterListener(delegate);
473 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
508 mMountService.unmountObb(rawPath, force, mObbActionListener, nonce);
525 return mMountService.isObbMounted(rawPath);
544 return mMountService.getMountedObbPath(rawPath);
553 return Arrays.asList(mMountService
[all...]

Completed in 319 milliseconds