Lines Matching refs:file
8 * you may not use this file except in compliance with the License.
20 * \file
29 deFile* file;
40 deFileResult result = deFile_read(fileStream->file, buf, bufSize, &_numRead);
68 deFileResult result = deFile_write(fileStream->file, buf, bufSize, &_numWritten);
110 deFile_destroy(fileStream->file);
158 /* \note mika Check that file is readable and writeable, currently not supported by deFile */
162 fileStream->file = deFile_create(filename, mode);
166 if (!fileStream->file)
178 /* \note mika Check that file is readable, currently not supported by deFile */
182 fileStream->file = deFile_create(filename, mode);
186 if (!fileStream->file)
198 /* \note mika Check that file is writeable, currently not supported by deFile */
202 fileStream->file = deFile_create(filename, mode);
206 if (!fileStream->file)