Home
last modified time | relevance | path

Searched refs:image_ihex (Results 1 – 2 of 2) sorted by relevance

/dports/devel/openocd/openocd-0.11.0/src/target/
H A Dimage.c122 struct image_ihex *ihex = image->type_private; in image_ihex_buffer_complete_inner()
754 struct image_ihex *image_ihex; in image_open() local
756 image_ihex = image->type_private = malloc(sizeof(struct image_ihex)); in image_open()
758 retval = fileio_open(&image_ihex->fileio, url, FILEIO_READ, FILEIO_TEXT); in image_open()
766 fileio_close(image_ihex->fileio); in image_open()
980 struct image_ihex *image_ihex = image->type_private; in image_close() local
982 fileio_close(image_ihex->fileio); in image_close()
984 free(image_ihex->buffer); in image_close()
985 image_ihex->buffer = NULL; in image_close()
H A Dimage.h70 struct image_ihex { struct