OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mountService
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/core/java/com/android/internal/os/storage/
ExternalStorageFormatter.java
123
IMountService
mountService
= getMountService();
128
mountService
.mountVolume(extStoragePath);
150
IMountService
mountService
= getMountService();
156
mountService
.unmountVolume(extStoragePath, true, mFactoryReset);
164
final IMountService
mountService
= getMountService();
168
if (
mountService
!= null) {
174
mountService
.formatVolume(extStoragePath);
194
mountService
.mountVolume(extStoragePath);
/packages/apps/Settings/src/com/android/settings/
CryptKeeperConfirm.java
72
IMountService
mountService
= IMountService.Stub.asInterface(service);
75
mountService
.encryptStorage(args.getString("password"));
/packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java
298
IMountService
mountService
= getMountService();
303
mountService
.unmountVolume(sClickedMountPoint, true, false);
316
IMountService
mountService
= getMountService();
317
int stUsers[] =
mountService
.getStorageUsers(sClickedMountPoint);
346
Log.e(TAG, "Is
MountService
running?");
352
IMountService
mountService
= getMountService();
354
if (
mountService
!= null) {
355
mountService
.mountVolume(sClickedMountPoint);
/frameworks/base/core/java/com/android/internal/content/
PackageHelper.java
41
* Some utility methods to invoke
MountService
api.
73
// Create mount point via
MountService
75
IMountService
mountService
= getMountService();
80
int rc =
mountService
.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
86
String cachePath =
mountService
.getSecureContainerPath(cid);
91
Log.e(TAG, "
MountService
running?");
105
Log.e(TAG, "
MountService
running?");
119
Log.e(TAG, "
MountService
running?");
/frameworks/base/core/java/android/os/
Environment.java
83
IMountService
mountService
= IMountService.Stub.asInterface(ServiceManager
85
final StorageVolume[] volumes =
mountService
.getVolumeList();
88
Log.e(TAG, "couldn't talk to
MountService
", e);
713
final IMountService
mountService
= IMountService.Stub.asInterface(
715
final StorageVolume[] volumes =
mountService
.getVolumeList();
718
return
mountService
.getVolumeState(volume.getPath());
/frameworks/base/services/java/com/android/server/
SystemServer.java
136
MountService
mountService
= null;
409
* NotificationManagerService is dependant on
MountService
,
410
* (for media / usb notifications) so we must start
MountService
first.
413
mountService
= new
MountService
(context);
414
ServiceManager.addService("mount",
mountService
);
548
*
MountService
has a few dependencies: Notification Manager and
549
* AppWidget Provider. Make sure
MountService
is completely started
552
if (
mountService
!= null && !onlyCore)
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java
582
IMountService
mountService
= IMountService.Stub.asInterface(service);
584
mountService
.changeEncryptionPassword(password);
[
all
...]
Completed in 494 milliseconds