Lines Matching refs:hFile
49 RTFILE hFile;
65 int rc = RTFileGetSize(pThis->hFile, &cbFile);
115 Assert(pThis->hFile != NIL_RTFILE);
121 int rc = RTFileSeek(pThis->hFile, off, RTFILE_SEEK_BEGIN, NULL);
124 rc = RTFileRead(pThis->hFile, pvBuf, cbRead, NULL);
134 pThis->hFile, pvBuf, cbRead, rc, off, pThis->pszFilename));
137 AssertMsgFailed(("RTFileSeek(%RTfile,%#llx,) -> %Rrc\n", pThis->hFile, off, rc));
149 Assert(pThis->hFile != NIL_RTFILE);
155 int rc = RTFileSeek(pThis->hFile, off, RTFILE_SEEK_BEGIN, NULL);
158 rc = RTFileWrite(pThis->hFile, pvBuf, cbWrite, NULL);
168 pThis->hFile, pvBuf, cbWrite, rc, off, pThis->pszFilename));
171 AssertMsgFailed(("RTFileSeek(%RTfile,%#llx,) -> %Rrc\n", pThis->hFile, off, rc));
183 Assert(pThis->hFile != NIL_RTFILE);
184 int rc = RTFileFlush(pThis->hFile);
237 if (pThis->hFile != NIL_RTFILE)
239 RTFileClose(pThis->hFile);
240 pThis->hFile = NIL_RTFILE;
265 pThis->hFile = NIL_RTFILE;
297 rc = RTFileOpen(&pThis->hFile, pszName, RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
306 rc = RTFileOpen(&pThis->hFile, pszName, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);