Lines Matching refs:image
106 long long image_size; // real size of image file
110 void generate_ext4_image(struct image_data *image);
111 void cleanup_image(struct image_data *image);
130 /* generate image and return it as image->buffer.
131 * size of the buffer returned as image->image_size.
133 * image->partition_size specifies what is the size of the
134 * file partition we generate image for.
136 void (*generate)(struct image_data *image);
138 /* it cleans the buffer allocated during image creation.
141 void (*cleanup)(struct image_data *image);
239 // In this case we read whole image into memory buffer.
275 void cleanup_image(struct image_data *image)
278 free(image->buffer);
280 munmap(image->buffer, image->image_size);
284 void generate_ext4_image(struct image_data *image)
304 make_ext4fs_sparse_fd(fd, image->partition_size, NULL, NULL);
307 image->image_size = st.st_size;
308 image->buffer = load_buffer(fd, st.st_size);
318 struct image_data image;
367 image.partition_size = strtoll(response, (char **)NULL, 16);
369 generator->generate(&image);
370 if (!image.buffer) {
371 fprintf(stderr,"Cannot generate image.\n");
377 fprintf(stderr, "sending '%s' (%lli KB)...\n", partition, image.image_size/1024);
378 status = fb_download_data(usb, image.buffer, image.image_size);
387 generator->cleanup(&image);