Lines Matching refs:filePath
109 char filePath[100]; in read_image_from_fbc_file() local
112 snprintf(filePath, 100, inputFbcFilePath, in read_image_from_fbc_file()
115 FILE *file = fopen(filePath, "rb"); in read_image_from_fbc_file()
117 fprintf(stderr, "Could not open %s\n", filePath); in read_image_from_fbc_file()
132 char filePath[100]; in read_image_from_file() local
135 snprintf(filePath, 100, inputFilePath, in read_image_from_file()
138 FILE *file = fopen(filePath, "rb"); in read_image_from_file()
140 fprintf(stderr, "Could not open %s\n", filePath); in read_image_from_file()
155 char filePath[100]; in write_image_to_fbc_file() local
158 snprintf(filePath, 100, outputFbcFilePath, in write_image_to_fbc_file()
161 FILE *file = fopen(filePath, "wb+"); in write_image_to_fbc_file()
163 fprintf(stderr, "Could not open %s\n", filePath); in write_image_to_fbc_file()
166 fprintf(stderr, "open %s and write ok\n", filePath); in write_image_to_fbc_file()
180 char filePath[100]; in write_image_to_file() local
183 snprintf(filePath, 100, outputFilePath, in write_image_to_file()
186 FILE *file = fopen(filePath, "wb+"); in write_image_to_file()
188 fprintf(stderr, "Could not open %s\n", filePath); in write_image_to_file()
191 fprintf(stderr, "open %s and write ok\n", filePath); in write_image_to_file()