Lines Matching defs:file
97 FILE* file = NULL;
109 file = fopen(filename, mode_fopen);
110 return file;
115 FILE* file = NULL;
127 file = FOPEN_FUNC((const char*)filename, mode_fopen);
128 return file;
135 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream);
142 ret = (uLong)fwrite(buf, 1, (size_t)size, (FILE *)stream);
149 ret = ftell((FILE *)stream);
157 ret = FTELLO_FUNC((FILE *)stream);
179 if (fseek((FILE *)stream, offset, fseek_origin) != 0)
203 if(FSEEKO_FUNC((FILE *)stream, offset, fseek_origin) != 0)
213 ret = fclose((FILE *)stream);
220 ret = ferror((FILE *)stream);