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.cpp97 m_cmdRespPos(0U), in VirtioGpuStream()
350 if (len > 0U && m_cmdRespPos == 0U) { in readFully()
365 if (m_cmdResp->cmdSize - sizeof(*m_cmdResp) < m_cmdRespPos + len) { in readFully()
368 m_cmdResp->cmdSize, m_cmdRespPos); in readFully()
372 memcpy(buf, &m_cmdResp->buf[m_cmdRespPos], len); in readFully()
374 if (m_cmdRespPos + len == m_cmdResp->cmdSize - sizeof(*m_cmdResp)) { in readFully()
375 m_cmdRespPos = 0U; in readFully()
377 m_cmdRespPos += len; in readFully()
DVirtioGpuStream.h100 size_t m_cmdRespPos; variable