Lines Matching refs:mpInStrm
279 mpInStrm( &rInStrm ), in RelativeInputStream()
290 return mpInStrm ? mnSize : -1; in size()
295 return mpInStrm ? mnRelPos : -1; in tell()
300 if( mpInStrm && isSeekable() && (mnStartPos >= 0) ) in seek()
303 mpInStrm->seek( mnStartPos + mnRelPos ); in seek()
304 mbEof = (mnRelPos != nPos) || mpInStrm->isEof(); in seek()
310 mpInStrm = 0; in close()
320 nReadBytes = mpInStrm->readData( orData, nMaxBytes, nAtomSize ); in readData()
322 mbEof = (nMaxBytes < nBytes) || mpInStrm->isEof(); in readData()
333 nReadBytes = mpInStrm->readMemory( opMem, nMaxBytes, nAtomSize ); in readMemory()
335 mbEof = (nMaxBytes < nBytes) || mpInStrm->isEof(); in readMemory()
345 mpInStrm->skip( nSkipBytes, nAtomSize ); in skip()