Lines Matching defs:newPosition
193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
209 newPosition = value.QuadPart;
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition)
215 return Seek(position, FILE_BEGIN, newPosition);
220 UInt64 newPosition;
221 return Seek(0, newPosition);
224 bool CFileBase::SeekToEnd(UInt64 &newPosition)
226 return Seek(0, FILE_END, newPosition);
426 UInt64 newPosition;
427 if (!Seek(length, newPosition))
429 if (newPosition != length)