Lines Matching refs:overlay_apk_path
127 int maybe_create_fd(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_fd() argument
145 if (!verify_file_readable(overlay_apk_path)) { in maybe_create_fd()
146 ALOGD("error: failed to read apk %s: %s\n", overlay_apk_path, strerror(errno)); in maybe_create_fd()
150 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd); in maybe_create_fd()
153 int maybe_create_path(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_path() argument
166 if (!verify_file_readable(overlay_apk_path)) { in maybe_create_path()
167 ALOGD("error: failed to read apk %s: %s\n", overlay_apk_path, strerror(errno)); in maybe_create_path()
171 return idmap_create_path(target_apk_path, overlay_apk_path, idmap_path); in maybe_create_path()
174 int maybe_verify_fd(const char *target_apk_path, const char *overlay_apk_path, in maybe_verify_fd() argument
189 if (!verify_file_readable(overlay_apk_path)) { in maybe_verify_fd()
190 ALOGD("error: failed to read apk %s: %s\n", overlay_apk_path, strerror(errno)); in maybe_verify_fd()
194 return idmap_verify_fd(target_apk_path, overlay_apk_path, idmap_fd); in maybe_verify_fd()