Home | History | Annotate | Download | only in make

Lines Matching full:file_buf

233     uint8_t *file_buf;
265 file_buf = malloc(stat_buf.st_size);
267 if (!file_buf)
273 if (read(fd, file_buf, stat_buf.st_size) != stat_buf.st_size)
285 res = parse_macho(file_buf, stat_buf.st_size);
286 free(file_buf);
749 uint8_t *file_buf;
786 file_buf = malloc(stat_buf.st_size);
788 if (!file_buf)
794 if (read(fd, file_buf, stat_buf.st_size) != stat_buf.st_size)
806 res = parse_elf(file_buf, stat_buf.st_size, mode);
807 free(file_buf);
988 unsigned __int8 *file_buf;
1018 file_buf = malloc(stat_buf.st_size);
1020 if (!file_buf)
1026 if (_read(fd, file_buf, stat_buf.st_size) != stat_buf.st_size)
1038 res = parse_coff(file_buf, stat_buf.st_size);
1040 free(file_buf);