Home
last modified time | relevance | path

Searched refs:apkPath (Results 1 – 4 of 4) sorted by relevance

/system/core/adb/client/
Dfastdeploy.h30 void extract_metadata(const char* apkPath, FILE* outputFp);
31 void create_patch(const char* apkPath, const char* metadataPath, const char* patchPath);
32 void apply_patch_on_device(const char* apkPath, const char* patchPath, const char* outputPath);
33 void install_patch(const char* apkPath, const char* patchPath, int argc, const char** argv);
34 std::string get_patch_path(const char* apkPath);
35 bool find_package(const char* apkPath);
Dfastdeploy.cpp159 static std::string get_packagename_from_apk(const char* apkPath) { in get_packagename_from_apk() argument
161 std::unique_ptr<android::ZipFileRO> zipFile(android::ZipFileRO::open(apkPath)); in get_packagename_from_apk()
164 perror_exit("Could not open %s", apkPath); in get_packagename_from_apk()
168 error_exit("Could not find AndroidManifest.xml inside %s", apkPath); in get_packagename_from_apk()
172 error_exit("Could not read AndroidManifest.xml inside %s", apkPath); in get_packagename_from_apk()
176 error_exit("Could not uncompress AndroidManifest.xml inside %s", apkPath); in get_packagename_from_apk()
181 error_exit("Could not parse AndroidManifest.xml inside %s", apkPath); in get_packagename_from_apk()
222 error_exit("Could not find package name tag in AndroidManifest.xml inside %s", apkPath); in get_packagename_from_apk()
225 void extract_metadata(const char* apkPath, FILE* outputFp) { in extract_metadata() argument
226 std::string packageName = get_packagename_from_apk(apkPath); in extract_metadata()
[all …]
Dadb_install.cpp136 static int delete_device_patch_file(const char* apkPath) { in delete_device_patch_file() argument
137 std::string patchDevicePath = get_patch_path(apkPath); in delete_device_patch_file()
/system/core/adb/fastdeploy/deploypatchgenerator/src/com/android/fastdeploy/
DDeployPatchGenerator.java59 String apkPath = args[0]; in main() local
61 File hostFile = new File(apkPath); in main()