Lines Matching refs:m_buflen
84 SIZE_T m_buflen; /* buffer filled [0, m_bufsiz - 1] */ member
226 m_buflen (0), in FileHandle_Impl()
272 LONGLONG bufend = std::max((LONGLONG)(0), m_bufptr) + m_buflen; in getSize()
396 m_bufptr = -1, m_buflen = 0; in readFileAt()
415 m_bufptr = bufptr, m_buflen = sal::static_int_cast< SIZE_T >(uDone); in readFileAt()
417 if (bufpos >= m_buflen) in readFileAt()
423 SIZE_T const bytes = std::min(m_buflen - bufpos, nBytesRequested); in readFileAt()
469 m_bufptr = -1, m_buflen = 0; in writeFileAt()
490 m_bufptr = bufptr, m_buflen = sal::static_int_cast< SIZE_T >(uDone); in writeFileAt()
497 m_buflen = std::max(m_buflen, bufpos + bytes); in writeFileAt()
525 m_bufptr = bufptr, m_buflen = sal::static_int_cast< SIZE_T >(uDone); in readLineAt()
533 int state = (bufpos >= m_buflen) ? LINE_STATE_LF : LINE_STATE_BEGIN; in readLineAt()
537 if (curpos >= m_buflen) in readLineAt()
558 m_bufptr = bufptr, m_buflen = sal::static_int_cast< SIZE_T >(uDone); in readLineAt()
562 if (bufpos >= m_buflen) in readLineAt()
615 if (bufpos >= m_buflen) in readLineAt()
651 result = writeAt (m_bufptr, m_buffer, m_buflen, &uDone); in syncFile()
654 if (uDone != m_buflen) in syncFile()
1106 pImpl->m_bufptr = -1, pImpl->m_buflen = 0; in osl_setFileSize()