Home | History | Annotate | Download | only in source

Lines Matching refs:fFile

30 	,	fFile (NULL)
34 fFile = fopen (filename, output ? "wb" : "rb");
36 if (!fFile)
61 if (fFile)
63 fclose (fFile);
64 fFile = NULL;
74 if (fseek (fFile, 0, SEEK_END) != 0)
81 return (uint64) ftell (fFile);
92 if (fseek (fFile, (long) offset, SEEK_SET) != 0)
99 uint32 bytesRead = (uint32) fread (data, 1, count, fFile);
117 if (fseek (fFile, (uint32) offset, SEEK_SET) != 0)
124 uint32 bytesWritten = (uint32) fwrite (data, 1, count, fFile);