Home | History | Annotate | Download | only in gas

Lines Matching defs:binfile

6458   FILE * binfile;
6505 binfile = search_and_open (filename, path);
6507 if (binfile == NULL)
6514 if (fstat (fileno (binfile), &filestat) != 0
6525 if (fseek (binfile, 0, SEEK_END) != 0)
6530 file_len = ftell (binfile);
6543 if (fseek (binfile, skip, SEEK_SET) != 0)
6552 bytes = fread (binfrag, 1, count, binfile);
6558 if (binfile != NULL)
6559 fclose (binfile);