Home | History | Annotate | Download | only in gas

Lines Matching defs:binfile

6447   FILE * binfile;
6494 binfile = search_and_open (filename, path);
6496 if (binfile == NULL)
6503 if (fstat (fileno (binfile), &filestat) != 0
6514 if (fseek (binfile, 0, SEEK_END) != 0)
6519 file_len = ftell (binfile);
6532 if (fseek (binfile, skip, SEEK_SET) != 0)
6541 bytes = fread (binfrag, 1, count, binfile);
6547 if (binfile != NULL)
6548 fclose (binfile);