Home
last modified time | relevance | path

Searched refs:overlayApkPath (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/cmds/idmap2/idmap2d/aidl/android/os/
DIIdmap2.aidl31 @utf8InCpp String getIdmapPath(@utf8InCpp String overlayApkPath, int userId); in getIdmapPath() argument
32 boolean removeIdmap(@utf8InCpp String overlayApkPath, int userId); in removeIdmap() argument
33 boolean verifyIdmap(@utf8InCpp String overlayApkPath, int fulfilledPolicies, in verifyIdmap() argument
36 @utf8InCpp String overlayApkPath, in createIdmap() argument
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java354 public void idmap(String targetApkPath, String overlayApkPath, int uid) in idmap() argument
358 BlockGuard.getVmPolicy().onPathAccess(overlayApkPath); in idmap()
360 mInstalld.idmap(targetApkPath, overlayApkPath, uid); in idmap()
366 public void removeIdmap(String overlayApkPath) throws InstallerException { in removeIdmap() argument
368 BlockGuard.getVmPolicy().onPathAccess(overlayApkPath); in removeIdmap()
370 mInstalld.removeIdmap(overlayApkPath); in removeIdmap()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl75 void idmap(@utf8InCpp String targetApkPath, @utf8InCpp String overlayApkPath, int uid); in idmap() argument
76 void removeIdmap(@utf8InCpp String overlayApkPath); in removeIdmap() argument
/frameworks/native/cmds/installd/
DInstalldNativeService.h122 binder::Status idmap(const std::string& targetApkPath, const std::string& overlayApkPath,
124 binder::Status removeIdmap(const std::string& overlayApkPath);
DInstalldNativeService.cpp2343 const std::string& overlayApkPath, int32_t uid) { in idmap() argument
2346 CHECK_ARGUMENT_PATH(overlayApkPath); in idmap()
2350 const char* overlay_apk = overlayApkPath.c_str(); in idmap()
2431 binder::Status InstalldNativeService::removeIdmap(const std::string& overlayApkPath) { in removeIdmap() argument
2433 CHECK_ARGUMENT_PATH(overlayApkPath); in removeIdmap()
2436 const char* overlay_apk = overlayApkPath.c_str(); in removeIdmap()
/frameworks/base/libs/androidfw/include/androidfw/
DAssetManager.h212 bool createIdmap(const char* targetApkPath, const char* overlayApkPath,
/frameworks/base/libs/androidfw/
DAssetManager.cpp329 bool AssetManager::createIdmap(const char* targetApkPath, const char* overlayApkPath, in createIdmap() argument
333 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; in createIdmap()
355 targetApkPath, overlayApkPath, (void**)outData, outSize) == NO_ERROR; in createIdmap()