Searched refs:overlayApkPath (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/cmds/installd/binder/android/os/
H A DIInstalld.aidl73 void idmap(@utf8InCpp String targetApkPath, @utf8InCpp String overlayApkPath, int uid);
74 void removeIdmap(@utf8InCpp String overlayApkPath);
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java339 public void idmap(String targetApkPath, String overlayApkPath, int uid) argument
343 mInstalld.idmap(targetApkPath, overlayApkPath, uid);
349 public void removeIdmap(String overlayApkPath) throws InstallerException { argument
352 mInstalld.removeIdmap(overlayApkPath);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.h109 binder::Status idmap(const std::string& targetApkPath, const std::string& overlayApkPath,
111 binder::Status removeIdmap(const std::string& overlayApkPath);
H A DInstalldNativeService.cpp2174 const std::string& overlayApkPath, int32_t uid) {
2177 CHECK_ARGUMENT_PATH(overlayApkPath);
2181 const char* overlay_apk = overlayApkPath.c_str();
2262 binder::Status InstalldNativeService::removeIdmap(const std::string& overlayApkPath) { argument
2264 CHECK_ARGUMENT_PATH(overlayApkPath);
2267 const char* overlay_apk = overlayApkPath.c_str();
2173 idmap(const std::string& targetApkPath, const std::string& overlayApkPath, int32_t uid) argument
/frameworks/base/libs/androidfw/include/androidfw/
H A DAssetManager.h209 bool createIdmap(const char* targetApkPath, const char* overlayApkPath,
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp326 bool AssetManager::createIdmap(const char* targetApkPath, const char* overlayApkPath, argument
330 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) };
352 targetApkPath, overlayApkPath, (void**)outData, outSize) == NO_ERROR;

Completed in 157 milliseconds