Home
last modified time | relevance | path

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

/hardware/interfaces/graphics/composer/2.1/utils/command-buffer/include/composer-command-buffer/2.1/
DComposerCommandBuffer.h65 mDataWritten = 0; in reset()
80 uint32_t val = (offset < mDataWritten) ? mData[offset] : 0; in getCommand()
87 if (mDataWritten == 0) { in writeQueue()
113 if (!mQueue->write(mData.get(), mDataWritten)) { in writeQueue()
121 if (!newQueue->isValid() || !newQueue->write(mData.get(), mDataWritten)) { in writeQueue()
130 *outCommandLength = mDataWritten; in writeQueue()
440 mCommandEnd = mDataWritten + length; in beginCommand()
446 } else if (mDataWritten > mCommandEnd) { in endCommand()
448 mDataWritten = mCommandEnd; in endCommand()
449 } else if (mDataWritten < mCommandEnd) { in endCommand()
[all …]
/hardware/interfaces/graphics/composer/2.3/utils/command-buffer/include/composer-command-buffer/2.3/
DComposerCommandBuffer.h128 memcpy(&mData[mDataWritten], blob, length); in writeBlob()
130 mDataWritten += numElements; in writeBlob()
131 mDataWritten += (length - (numElements * 4) > 0) ? 1 : 0; in writeBlob()