Lines Matching refs:target_apk_path
123 int maybe_create_fd(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_fd() argument
136 if (!verify_file_readable(target_apk_path)) { in maybe_create_fd()
137 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_create_fd()
146 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd); in maybe_create_fd()
149 int maybe_create_path(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_path() argument
157 if (!verify_file_readable(target_apk_path)) { in maybe_create_path()
158 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_create_path()
167 return idmap_create_path(target_apk_path, overlay_apk_path, idmap_path); in maybe_create_path()
170 int maybe_scan(const char *target_package_name, const char *target_apk_path, in maybe_scan() argument
178 if (!verify_file_readable(target_apk_path)) { in maybe_scan()
179 ALOGD("error: failed to read apk %s: %s\n", target_apk_path, strerror(errno)); in maybe_scan()
197 return idmap_scan(target_package_name, target_apk_path, idmap_dir, overlay_dirs); in maybe_scan()