summaryrefslogtreecommitdiffstats
path: root/media/sdutils/sdutil.cpp
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2010-01-11 10:15:16 -0800
committerSan Mehat <san@google.com>2010-01-11 10:15:16 -0800
commit0f5525ad3b9b341a6c288ded8a8a08572fc657c6 (patch)
tree2c55b7fcfdc4f8853b660f2f71b5d61985ce63c1 /media/sdutils/sdutil.cpp
parentee7d5524216523f1c759d19ec7bb6f01c2d71a08 (diff)
downloadframeworks_base-0f5525ad3b9b341a6c288ded8a8a08572fc657c6.zip
frameworks_base-0f5525ad3b9b341a6c288ded8a8a08572fc657c6.tar.gz
frameworks_base-0f5525ad3b9b341a6c288ded8a8a08572fc657c6.tar.bz2
framework: asec: Rename 'Cache' -> 'Container'
Signed-off-by: San Mehat <san@google.com>
Diffstat (limited to 'media/sdutils/sdutil.cpp')
-rw-r--r--media/sdutils/sdutil.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/media/sdutils/sdutil.cpp b/media/sdutils/sdutil.cpp
index 7f0dda7..c77424f 100644
--- a/media/sdutils/sdutil.cpp
+++ b/media/sdutils/sdutil.cpp
@@ -105,33 +105,33 @@ static int asec_create(const char *id, int sizeMb, const char *fstype,
String16 sFstype(fstype);
String16 sKey(key);
- String16 r = gMountService->createSecureCache(sId, sizeMb, sFstype,
- sKey, ownerUid);
+ String16 r = gMountService->createSecureContainer(sId, sizeMb, sFstype,
+ sKey, ownerUid);
return 0;
}
static int asec_finalize(const char *id) {
String16 sId(id);
- gMountService->finalizeSecureCache(sId);
+ gMountService->finalizeSecureContainer(sId);
return 0;
}
static int asec_destroy(const char *id) {
String16 sId(id);
- gMountService->destroySecureCache(sId);
+ gMountService->destroySecureContainer(sId);
return 0;
}
static int asec_mount(const char *id, const char *key, int ownerUid) {
String16 sId(id);
String16 sKey(key);
- gMountService->mountSecureCache(sId, sKey, ownerUid);
+ gMountService->mountSecureContainer(sId, sKey, ownerUid);
return 0;
}
static int asec_path(const char *id) {
String16 sId(id);
- gMountService->getSecureCachePath(sId);
+ gMountService->getSecureContainerPath(sId);
return 0;
}