Lines Matching refs:binfile
5648 FILE * binfile; in s_incbin() local
5702 binfile = fopen (filename, FOPEN_RB); in s_incbin()
5703 if (binfile == NULL) in s_incbin()
5713 binfile = fopen (path, FOPEN_RB); in s_incbin()
5714 if (binfile != NULL) in s_incbin()
5718 if (binfile == NULL) in s_incbin()
5724 if (binfile) in s_incbin()
5731 if (fseek (binfile, 0, SEEK_END) != 0) in s_incbin()
5736 file_len = ftell (binfile); in s_incbin()
5749 if (fseek (binfile, skip, SEEK_SET) != 0) in s_incbin()
5758 bytes = fread (binfrag, 1, count, binfile); in s_incbin()
5764 if (binfile != NULL) in s_incbin()
5765 fclose (binfile); in s_incbin()