Searched refs:mountService (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/com/android/internal/os/storage/ |
D | ExternalStorageFormatter.java | 125 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/ |
D | PackageHelper.java | 88 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/ |
D | Environment.java | 721 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/ |
D | LockPatternUtils.java | 610 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/ |
D | SystemServer.java | 392 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/ |
D | ActivityManagerService.java | 1902 IMountService mountService = IMountService.Stub.asInterface(service); in handleMessage() local 1904 mountService.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag()); in handleMessage()
|