Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/graphics/composer/2.4/utils/command-buffer/include/composer-command-buffer/2.4/
H A DComposerCommandBuffer.h59 const size_t commandSize = 3 + sizeToElements(key.size()) + sizeToElements(value.size()); in setLayerGenericMetadata() local
60 if (commandSize > std::numeric_limits<uint16_t>::max()) { in setLayerGenericMetadata()
61 LOG_FATAL("Too much generic metadata (%zu elements)", commandSize); in setLayerGenericMetadata()
66 static_cast<uint16_t>(commandSize)); in setLayerGenericMetadata()
/aosp12/frameworks/wilhelm/src/itf/
H A DIAndroidEffect.cpp86 SLInterfaceID effectImplementationId, SLuint32 command, SLuint32 commandSize, in IAndroidEffect_SendCommand() argument
92 result = android_genericFx_sendCommand(thiz, effectImplementationId, command, commandSize, in IAndroidEffect_SendCommand()
/aosp12/frameworks/wilhelm/src/android/
H A Dandroid_Effect.h106 SLuint32 command, SLuint32 commandSize, void* pCommandData,
H A Dandroid_Effect.cpp894 SLuint32 command, SLuint32 commandSize, void* pCommandData, in android_genericFx_sendCommand() argument
905 (uint32_t) commandSize, in android_genericFx_sendCommand()
/aosp12/frameworks/wilhelm/include/SLES/
H A DOpenSLES_Android.h111 SLuint32 commandSize,
/aosp12/packages/apps/SecureElement/src/com/android/se/
H A DTerminal.java408 int commandSize = (aid == null ? 0 : aid.length) + 5; in select() local
409 byte[] selectCommand = new byte[commandSize]; in select()