Lines Matching refs:path
51 try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache) { in try_update_binary() argument
131 args[3] = (char*)path; in try_update_binary()
190 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status)); in try_update_binary()
198 really_install_package(const char *path, bool* wipe_cache, bool needs_mount) in really_install_package() argument
205 LOGI("Update location: %s\n", path); in really_install_package()
210 if (path && needs_mount) { in really_install_package()
211 if (path[0] == '@') { in really_install_package()
212 ensure_path_mounted(path+1); in really_install_package()
214 ensure_path_mounted(path); in really_install_package()
219 if (sysMapFile(path, &map) != 0) { in really_install_package()
249 LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad"); in really_install_package()
258 int result = try_update_binary(path, &zip, wipe_cache); in really_install_package()
268 install_package(const char* path, bool* wipe_cache, const char* install_file, in install_package() argument
275 fputs(path, install_log); in install_package()
285 result = really_install_package(path, wipe_cache, needs_mount); in install_package()