Home
last modified time | relevance | path

Searched refs:tryRead (Results 1 – 6 of 6) sorted by relevance

/external/deqp/execserver/
DxsWin32TestProcess.hpp121 int read (deUint8* dst, int numBytes) { return m_logBuffer.tryRead(numBytes, dst); } in read()
193 …virtual int readInfoLog (deUint8* dst, int numBytes) { return m_infoBuffer.tryRead(numBytes,… in readInfoLog()
DxsPosixFileReader.hpp45 int read (deUint8* dst, int numBytes) { return m_buf.tryRead(numBytes, dst); } in read()
DxsPosixTestProcess.hpp90 …virtual int readInfoLog (deUint8* dst, int numBytes) { return m_infoBuffer.tryRead(numBytes,… in readInfoLog()
/external/deqp/framework/delibs/decpp/
DdeBlockBuffer.hpp63 int tryRead (int numElements, T* elements);
348 int BlockBuffer<T>::tryRead (int numElements, T* elements) in tryRead() function in de::BlockBuffer
DdeBlockBuffer.cpp78 int numRead = m_buffer.tryRead(numToRead, &tmpBuf[0]); in run()
/external/deqp/executor/
DxeTcpIpLink.cpp217 numToSend = 1 + m_buffer.tryRead(DE_LENGTH_OF_ARRAY(buf)-1, &buf[1]); in run()