Home
last modified time | relevance | path

Searched refs:mountService (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/storage/
DExternalStorageFormatter.java125 IMountService mountService = getMountService(); in onCancel() local
130 mountService.mountVolume(extStoragePath); in onCancel()
155 IMountService mountService = getMountService(); in updateProgressState() local
161 mountService.unmountVolume(extStoragePath, true, mFactoryReset); in updateProgressState()
169 final IMountService mountService = getMountService(); in updateProgressState() local
173 if (mountService != null) { in updateProgressState()
179 mountService.formatVolume(extStoragePath); in updateProgressState()
205 mountService.mountVolume(extStoragePath); in updateProgressState()
/frameworks/base/core/java/com/android/internal/content/
DPackageHelper.java88 IMountService mountService = getMountService(); in createSdDir() local
93 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid, in createSdDir()
99 String cachePath = mountService.getSecureContainerPath(cid); in createSdDir()
113 IMountService mountService = getMountService(); in resizeSdDir() local
114 int rc = mountService.resizeSecureContainer(cid, sizeMb, sdEncKey); in resizeSdDir()
/frameworks/base/core/java/android/os/
DEnvironment.java721 final IMountService mountService = IMountService.Stub.asInterface( in getExternalStorageState() local
724 return mountService.getVolumeState(volume.getPath()); in getExternalStorageState()
867 final IMountService mountService = IMountService.Stub.asInterface( in getStorageVolume() local
869 final StorageVolume[] volumes = mountService.getVolumeList(); in getStorageVolume()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternUtils.java610 IMountService mountService = IMountService.Stub.asInterface(service); in updateCryptoUserInfo() local
613 mountService.setField(StorageManager.OWNER_INFO_KEY, ownerInfo); in updateCryptoUserInfo()
741 IMountService mountService = IMountService.Stub.asInterface(service); in updateEncryptionPassword() local
743 mountService.changeEncryptionPassword(type, password); in updateEncryptionPassword()
896 IMountService mountService = IMountService.Stub.asInterface( in isDeviceEncrypted() local
899 return mountService.getEncryptionState() != IMountService.ENCRYPTION_STATE_NONE in isDeviceEncrypted()
900 && mountService.getPasswordType() != StorageManager.CRYPT_TYPE_DEFAULT; in isDeviceEncrypted()
1190 IMountService mountService = IMountService.Stub.asInterface(service); in setVisiblePatternEnabled() local
1192 mountService.setField(StorageManager.PATTERN_VISIBLE_KEY, enabled ? "1" : "0"); in setVisiblePatternEnabled()
/frameworks/base/services/java/com/android/server/
DSystemServer.java392 MountService mountService = null; in startOtherServices() local
572 mountService = new MountService(context); in startOtherServices()
573 ServiceManager.addService("mount", mountService); in startOtherServices()
712 if (mountService != null && !mOnlyCore) { in startOtherServices()
713 mountService.waitForAsecScan(); in startOtherServices()
1030 final MountService mountServiceF = mountService; in startOtherServices()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java1902 IMountService mountService = IMountService.Stub.asInterface(service); in handleMessage() local
1904 mountService.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag()); in handleMessage()