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.java357 public void idmap(String targetApkPath, String overlayApkPath, int uid) in idmap() argument
361 BlockGuard.getVmPolicy().onPathAccess(overlayApkPath); in idmap()
363 mInstalld.idmap(targetApkPath, overlayApkPath, uid); in idmap()
369 public void removeIdmap(String overlayApkPath) throws InstallerException { in removeIdmap() argument
371 BlockGuard.getVmPolicy().onPathAccess(overlayApkPath); in removeIdmap()
373 mInstalld.removeIdmap(overlayApkPath); in removeIdmap()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl78 void idmap(@utf8InCpp String targetApkPath, @utf8InCpp String overlayApkPath, int uid); in idmap() argument
79 void removeIdmap(@utf8InCpp String overlayApkPath); in removeIdmap() argument
/frameworks/native/cmds/installd/
DInstalldNativeService.h129 binder::Status idmap(const std::string& targetApkPath, const std::string& overlayApkPath,
131 binder::Status removeIdmap(const std::string& overlayApkPath);
DInstalldNativeService.cpp2518 const std::string& overlayApkPath, int32_t uid) { in idmap() argument
2521 CHECK_ARGUMENT_PATH(overlayApkPath); in idmap()
2525 const char* overlay_apk = overlayApkPath.c_str(); in idmap()
2606 binder::Status InstalldNativeService::removeIdmap(const std::string& overlayApkPath) { in removeIdmap() argument
2608 CHECK_ARGUMENT_PATH(overlayApkPath); in removeIdmap()
2611 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()