Lines Matching refs:nRead
244 sal_uInt64 nRead = 0; in readLine() local
246 m_aGuard.getHandle(), m_aBuffer, sizeof(m_aBuffer), &nRead)) in readLine()
249 nRead = 0; in readLine()
251 if (nRead == 0) in readLine()
257 m_nSize = static_cast< int >(nRead); in readLine()
331 sal_uInt64 nRead; in run() local
334 m_aGuard.getHandle(), aBuffer, BUFFER_SIZE, &nRead)) in run()
337 nRead = 0; in run()
345 if (nRead == 0) in run()
350 else if (nRead <= BUFFER_SIZE) in run()
356 m_arData.reset(new sal_Char[(size_t)(m_nDataSize + nRead)]); in run()
360 memcpy(m_arData.get() + m_nDataSize, aBuffer, (size_t) nRead); in run()
361 m_nDataSize += (size_t) nRead; in run()