Lines Matching refs:nResult
222 APIRET nResult; in GetData() local
223 nResult = DosRead( pInstanceData->hFile,(PVOID)pData,nSize,&nCount ); in GetData()
224 if( nResult ) in GetData()
225 SetError(::GetSvError(nResult) ); in GetData()
253 APIRET nResult; in PutData() local
254 nResult = DosWrite( pInstanceData->hFile,(PVOID)pData,nSize,&nCount ); in PutData()
255 if( nResult ) in PutData()
256 SetError(::GetSvError(nResult) ); in PutData()
278 APIRET nResult; in SeekPos() local
281 nResult = DosSetFilePtr( pInstanceData->hFile,(long)nPos, in SeekPos()
284 nResult = DosSetFilePtr( pInstanceData->hFile,0L, in SeekPos()
287 if( nResult ) in SeekPos()
288 SetError(::GetSvError(nResult) ); in SeekPos()
334 APIRET nResult; in FlushData() local
335 nResult = DosResetBuffer(pInstanceData->hFile ); in FlushData()
336 if( nResult ) in FlushData()
337 SetError(::GetSvError(nResult) ); in FlushData()
356 APIRET nResult; in LockRange() local
363 nResult = DosSetFileLocks(pInstanceData->hFile, in LockRange()
369 if( nResult ) in LockRange()
370 SetError(::GetSvError(nResult) ); in LockRange()
392 APIRET nResult; in UnlockRange() local
399 nResult = DosSetFileLocks(pInstanceData->hFile, in UnlockRange()
405 if( nResult ) in UnlockRange()
406 SetError(::GetSvError(nResult) ); in UnlockRange()