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

  /frameworks/base/core/java/com/android/internal/os/storage/
ExternalStorageFormatter.java 125 IMountService mountService = getMountService();
130 mountService.mountVolume(extStoragePath);
155 IMountService mountService = getMountService();
161 mountService.unmountVolume(extStoragePath, true, mFactoryReset);
169 final IMountService mountService = getMountService();
173 if (mountService != null) {
179 mountService.formatVolume(extStoragePath);
205 mountService.mountVolume(extStoragePath);
  /packages/apps/Settings/src/com/android/settings/
CryptKeeperConfirm.java 79 IMountService mountService = IMountService.Stub.asInterface(service);
82 mountService.encryptStorage(args.getInt("type", -1), args.getString("password"));
129 IMountService mountService = IMountService.Stub.asInterface(service);
130 mountService.setField("SystemLocale", Locale.getDefault().toLanguageTag());
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
EncryptDeviceActivity.java 77 IMountService mountService = IMountService.Stub.asInterface(
81 return (mountService.getEncryptionState() == IMountService.ENCRYPTION_STATE_OK);
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 53 * Some utility methods to invoke MountService api.
88 IMountService mountService = getMountService();
93 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
99 String cachePath = mountService.getSecureContainerPath(cid);
104 Log.e(TAG, "MountService running?");
113 IMountService mountService = getMountService();
114 int rc = mountService.resizeSecureContainer(cid, sizeMb, sdEncKey);
119 Log.e(TAG, "MountService running?");
138 Log.e(TAG, "MountService running?");
152 Log.e(TAG, "MountService running?")
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 300 IMountService mountService = getMountService();
305 mountService.unmountVolume(sClickedMountPoint, true, false);
318 IMountService mountService = getMountService();
319 int stUsers[] = mountService.getStorageUsers(sClickedMountPoint);
348 Log.e(TAG, "Is MountService running?");
354 IMountService mountService = getMountService();
356 if (mountService != null) {
357 mountService.mountVolume(sClickedMountPoint);
  /frameworks/base/core/java/android/os/
Environment.java 721 final IMountService mountService = IMountService.Stub.asInterface(
724 return mountService.getVolumeState(volume.getPath());
867 final IMountService mountService = IMountService.Stub.asInterface(
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 610 IMountService mountService = IMountService.Stub.asInterface(service);
613 mountService.setField(StorageManager.OWNER_INFO_KEY, ownerInfo);
741 IMountService mountService = IMountService.Stub.asInterface(service);
743 mountService.changeEncryptionPassword(type, password);
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java 392 MountService mountService = null;
568 * NotificationManagerService is dependant on MountService,
569 * (for media / usb notifications) so we must start MountService first.
572 mountService = new MountService(context);
573 ServiceManager.addService("mount", mountService);
708 * MountService has a few dependencies: Notification Manager and
709 * AppWidget Provider. Make sure MountService is completely started
712 if (mountService != null && !mOnlyCore)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerService.java     [all...]

Completed in 1648 milliseconds