Home
last modified time | relevance | path

Searched refs:m_cmdRespPos (Results 1 – 2 of 2) sorted by relevance

/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DVirtioGpuStream.cpp79 m_cmdRespPos(0U), in VirtioGpuStream()
331 if (len > 0U && m_cmdRespPos == 0U) { in readFully()
346 if (m_cmdResp->cmdSize - sizeof(*m_cmdResp) < m_cmdRespPos + len) { in readFully()
349 m_cmdResp->cmdSize, m_cmdRespPos); in readFully()
353 memcpy(buf, &m_cmdResp->buf[m_cmdRespPos], len); in readFully()
355 if (m_cmdRespPos + len == m_cmdResp->cmdSize - sizeof(*m_cmdResp)) { in readFully()
356 m_cmdRespPos = 0U; in readFully()
358 m_cmdRespPos += len; in readFully()
DVirtioGpuStream.h92 size_t m_cmdRespPos; variable