Lines Matching refs:target_apk_path
122 int maybe_create_fd(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_fd() argument
135 if (!verify_file_readable(target_apk_path)) { in maybe_create_fd()
136 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_create_fd()
145 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd); in maybe_create_fd()
148 int maybe_create_path(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_path() argument
156 if (!verify_file_readable(target_apk_path)) { in maybe_create_path()
157 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_create_path()
166 return idmap_create_path(target_apk_path, overlay_apk_path, idmap_path); in maybe_create_path()
170 const char *target_apk_path, const char *idmap_dir) in maybe_scan() argument
182 if (!verify_file_readable(target_apk_path)) { in maybe_scan()
183 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_scan()
192 return idmap_scan(overlay_dir, target_package_name, target_apk_path, idmap_dir); in maybe_scan()