Home | History | Annotate | Download | only in gas

Lines Matching refs:binfile

5664   FILE * binfile;
5718 binfile = fopen (filename, FOPEN_RB);
5719 if (binfile == NULL)
5729 binfile = fopen (path, FOPEN_RB);
5730 if (binfile != NULL)
5734 if (binfile == NULL)
5740 if (binfile)
5747 if (fseek (binfile, 0, SEEK_END) != 0)
5752 file_len = ftell (binfile);
5765 if (fseek (binfile, skip, SEEK_SET) != 0)
5774 bytes = fread (binfrag, 1, count, binfile);
5780 if (binfile != NULL)
5781 fclose (binfile);