summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2012-05-09 13:27:08 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-05-09 13:27:08 -0700
commitbad417df657128a988b23a6b70b4d08633e4ac5a (patch)
treee468cea4dab48d9fd30858e4e7d6c9605a5ceae1 /core/java
parentea86b36f8087241dd898821fe29020e74b2c93d4 (diff)
parent07ba2ae327dbf209da5bafee9cdcb40e03e29d58 (diff)
downloadframeworks_base-bad417df657128a988b23a6b70b4d08633e4ac5a.zip
frameworks_base-bad417df657128a988b23a6b70b4d08633e4ac5a.tar.gz
frameworks_base-bad417df657128a988b23a6b70b4d08633e4ac5a.tar.bz2
Merge "Throw RemoteException when MountService is not yet up" into jb-dev
Diffstat (limited to 'core/java')
-rw-r--r--core/java/com/android/internal/content/PackageHelper.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/java/com/android/internal/content/PackageHelper.java b/core/java/com/android/internal/content/PackageHelper.java
index 48ed561..246b0c9 100644
--- a/core/java/com/android/internal/content/PackageHelper.java
+++ b/core/java/com/android/internal/content/PackageHelper.java
@@ -57,25 +57,25 @@ public class PackageHelper {
public static final int APP_INSTALL_INTERNAL = 1;
public static final int APP_INSTALL_EXTERNAL = 2;
- public static IMountService getMountService() {
+ public static IMountService getMountService() throws RemoteException {
IBinder service = ServiceManager.getService("mount");
if (service != null) {
return IMountService.Stub.asInterface(service);
} else {
Log.e(TAG, "Can't get mount service");
+ throw new RemoteException("Could not contact mount service");
}
- return null;
}
public static String createSdDir(int sizeMb, String cid, String sdEncKey, int uid,
boolean isExternal) {
// Create mount point via MountService
- IMountService mountService = getMountService();
+ try {
+ IMountService mountService = getMountService();
- if (localLOGV)
- Log.i(TAG, "Size of container " + sizeMb + " MB");
+ if (localLOGV)
+ Log.i(TAG, "Size of container " + sizeMb + " MB");
- try {
int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
isExternal);
if (rc != StorageResultCode.OperationSucceeded) {