Lines Matching refs:in_path
152 int get_logo_resolution(char *in_path, uint32_t *logo_width, in get_logo_resolution() argument
160 if (!in_path) in get_logo_resolution()
163 file = fopen(in_path, "rb"); in get_logo_resolution()
165 fprintf(stderr, "File %s open failed.\n", in_path); in get_logo_resolution()
170 fprintf(stderr, "Incomplete read of file %s.\n", in_path); in get_logo_resolution()
199 int convert_one_image(char *in_path, void *out_buf, uint32_t offset, in convert_one_image() argument
210 if (!out_buf || !in_path) { in convert_one_image()
215 file = fopen(in_path, "rb"); in convert_one_image()
217 fprintf(stderr, "File %s open failed.\n", in_path); in convert_one_image()
232 fprintf(stderr, "Incomplete read of file %s.\n", in_path); in convert_one_image()
534 char *in_path = in_img_info[i].path; in main() local
541 ret = convert_one_image(in_path, img_buf, offset, in main()