Home
last modified time | relevance | path

Searched refs:commandLength (Results 1 – 7 of 7) sorted by relevance

/aosp12/hardware/interfaces/graphics/composer/2.3/utils/command-buffer/include/composer-command-buffer/2.3/
H A DComposerCommandBuffer.h83 size_t commandLength = 0; in setLayerPerFrameMetadataBlobs() local
91 commandLength += 1; in setLayerPerFrameMetadataBlobs()
94 commandLength += 1; // key of metadata blob in setLayerPerFrameMetadataBlobs()
95 commandLength += 1; // size information of metadata blob in setLayerPerFrameMetadataBlobs()
99 commandLength += metadataSize; in setLayerPerFrameMetadataBlobs()
100 commandLength += in setLayerPerFrameMetadataBlobs()
104 if (commandLength > std::numeric_limits<uint16_t>::max()) { in setLayerPerFrameMetadataBlobs()
111 uint16_t length = static_cast<uint16_t>(commandLength); in setLayerPerFrameMetadataBlobs()
/aosp12/hardware/qcom/sm7250/display/composer/
H A DQtiComposerCommandBuffer.h89 bool writeQueue(bool& queueChanged, uint32_t& commandLength, in writeQueue() argument
93 commandLength = 0; in writeQueue()
133 commandLength = mDataWritten; in writeQueue()
462 size_t commandLength = 0; in setLayerPerFrameMetadataBlobs() local
470 commandLength += metadata.size(); in setLayerPerFrameMetadataBlobs()
473 commandLength += sizeof(int32_t); // key of metadata blob in setLayerPerFrameMetadataBlobs()
478 commandLength += metadataSize; in setLayerPerFrameMetadataBlobs()
482 if (commandLength > std::numeric_limits<uint16_t>::max()) { in setLayerPerFrameMetadataBlobs()
489 uint16_t length = static_cast<uint16_t>(commandLength); in setLayerPerFrameMetadataBlobs()
693 if (commandLength > mDataMaxSize || !mQueue->read(mData.get(), commandLength)) { in readQueue()
[all …]
/aosp12/hardware/interfaces/graphics/composer/2.4/utils/vts/
H A DComposerVts.cpp137 uint32_t commandLength = 0; in execute() local
139 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute()
147 commandLength, commandHandles, in execute()
/aosp12/hardware/interfaces/graphics/composer/2.2/utils/vts/
H A DComposerVts.cpp63 uint32_t commandLength = 0; in execute() local
65 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute()
72 mClient->executeCommands(commandLength, commandHandles, in execute()
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/command-buffer/include/composer-command-buffer/2.1/
H A DComposerCommandBuffer.h594 bool readQueue(uint32_t commandLength, const hidl_vec<hidl_handle>& commandHandles) { in readQueue() argument
605 if (commandLength > mDataMaxSize || !mQueue->read(mData.get(), commandLength)) { in readQueue()
610 mDataSize = commandLength; in readQueue()
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/vts/
H A DComposerVts.cpp282 uint32_t commandLength = 0; in execute() local
284 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute()
291 mClient->executeCommands(commandLength, commandHandles, in execute()
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DComposerHal.cpp762 uint32_t commandLength = 0; in execute() local
764 if (!mWriter.writeQueue(&queueChanged, &commandLength, &commandHandles)) { in execute()
779 if (commandLength == 0) { in execute()
819 ret = mClient_2_2->executeCommands_2_2(commandLength, commandHandles, hidl_callback); in execute()
821 ret = mClient->executeCommands(commandLength, commandHandles, hidl_callback); in execute()