Home
last modified time | relevance | path

Searched refs:Command (Results 1 – 16 of 16) sorted by relevance

/hardware/interfaces/graphics/composer/2.1/utils/vts/
DTestCommandReader.cpp32 IComposerClient::Command command; in parse()
37 case IComposerClient::Command::SELECT_DISPLAY: in parse()
41 case IComposerClient::Command::SET_ERROR: { in parse()
48 case IComposerClient::Command::SET_CHANGED_COMPOSITION_TYPES: in parse()
58 case IComposerClient::Command::SET_DISPLAY_REQUESTS: in parse()
68 case IComposerClient::Command::SET_PRESENT_FENCE: in parse()
72 case IComposerClient::Command::SET_RELEASE_FENCES: in parse()
/hardware/interfaces/graphics/composer/2.1/utils/command-buffer/include/composer-command-buffer/2.1/
DComposerCommandBuffer.h79 IComposerClient::Command getCommand(uint32_t offset) { in getCommand()
81 return static_cast<IComposerClient::Command>( in getCommand()
82 val & static_cast<uint32_t>(IComposerClient::Command::OPCODE_MASK)); in getCommand()
143 beginCommand(IComposerClient::Command::SELECT_DISPLAY, kSelectDisplayLength); in selectDisplay()
150 beginCommand(IComposerClient::Command::SELECT_LAYER, kSelectLayerLength); in selectLayer()
157 beginCommand(IComposerClient::Command::SET_ERROR, kSetErrorLength); in setError()
165 beginCommand(IComposerClient::Command::SET_PRESENT_OR_VALIDATE_DISPLAY_RESULT, in setPresentOrValidateResult()
180 beginCommand(IComposerClient::Command::SET_CHANGED_COMPOSITION_TYPES, count * 3); in setChangedCompositionTypes()
200 beginCommand(IComposerClient::Command::SET_DISPLAY_REQUESTS, 1 + count * 3); in setDisplayRequests()
214 beginCommand(IComposerClient::Command::SET_PRESENT_FENCE, kSetPresentFenceLength); in setPresentFence()
[all …]
/hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
DComposerCommandEngine.h57 IComposerClient::Command command; in execute()
90 virtual bool executeCommand(IComposerClient::Command command, uint16_t length) { in executeCommand()
92 case IComposerClient::Command::SELECT_DISPLAY: in executeCommand()
94 case IComposerClient::Command::SELECT_LAYER: in executeCommand()
96 case IComposerClient::Command::SET_COLOR_TRANSFORM: in executeCommand()
98 case IComposerClient::Command::SET_CLIENT_TARGET: in executeCommand()
100 case IComposerClient::Command::SET_OUTPUT_BUFFER: in executeCommand()
102 case IComposerClient::Command::VALIDATE_DISPLAY: in executeCommand()
104 case IComposerClient::Command::PRESENT_OR_VALIDATE_DISPLAY: in executeCommand()
106 case IComposerClient::Command::ACCEPT_DISPLAY_CHANGES: in executeCommand()
[all …]
/hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/
DComposerCommandEngine.h41 bool executeCommand(V2_1::IComposerClient::Command command, uint16_t length) override { in executeCommand()
42 switch (static_cast<IComposerClient::Command>(command)) { in executeCommand()
43 case IComposerClient::Command::SET_LAYER_PER_FRAME_METADATA: in executeCommand()
45 case IComposerClient::Command::SET_LAYER_FLOAT_COLOR: in executeCommand()
/hardware/interfaces/graphics/composer/2.3/utils/command-buffer/include/composer-command-buffer/2.3/
DComposerCommandBuffer.h49 beginCommand_2_3(IComposerClient::Command::SET_LAYER_PER_FRAME_METADATA, in setLayerPerFrameMetadata()
72 beginCommand_2_3(IComposerClient::Command::SET_LAYER_COLOR_TRANSFORM, in setLayerColorTransform()
111 beginCommand_2_3(IComposerClient::Command::SET_LAYER_PER_FRAME_METADATA_BLOBS, length); in setLayerPerFrameMetadataBlobs()
122 void beginCommand_2_3(IComposerClient::Command command, uint16_t length) { in beginCommand_2_3()
124 static_cast<V2_2::IComposerClient::Command>(static_cast<int32_t>(command)), length); in beginCommand_2_3()
/hardware/interfaces/graphics/composer/2.3/utils/hal/include/composer-hal/2.3/
DComposerCommandEngine.h42 bool executeCommand(V2_1::IComposerClient::Command command, uint16_t length) override { in executeCommand()
43 switch (static_cast<IComposerClient::Command>(command)) { in executeCommand()
44 case IComposerClient::Command::SET_LAYER_COLOR_TRANSFORM: in executeCommand()
46 case IComposerClient::Command::SET_LAYER_PER_FRAME_METADATA_BLOBS: in executeCommand()
/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
Dmsg_formatting.h104 enum class Command : uint32_t {
111 template <Command cmd>
114 #define DECLARE_COMMAND(cmd) using cmd##_t = Cmd<Command::cmd>
364 inline WriteStream write(WriteStream out, Command cmd) {
365 volatile Command* pos = reinterpret_cast<volatile Command*>(out.pos_);
366 out += sizeof(Command);
372 template <Command cmd>
377 inline std::tuple<ReadStream, bool> read(ReadStream in, Command cmd) {
378 volatile const Command* pos = reinterpret_cast<volatile const Command*>(in.pos_);
379 in += sizeof(Command);
[all …]
/hardware/interfaces/graphics/composer/2.2/utils/command-buffer/include/composer-command-buffer/2.2/
DComposerCommandBuffer.h79 beginCommand_2_2(IComposerClient::Command::SET_LAYER_FLOAT_COLOR, in setLayerFloatColor()
86 beginCommand_2_2(IComposerClient::Command::SET_LAYER_PER_FRAME_METADATA, in setLayerPerFrameMetadata()
96 void beginCommand_2_2(IComposerClient::Command command, uint16_t length) { in beginCommand_2_2()
98 static_cast<V2_1::IComposerClient::Command>(static_cast<int32_t>(command)), length); in beginCommand_2_2()
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/
Dqcamera_test.h253 struct Command { struct
254 Command( Commands_e cmd_, char *arg_ = NULL)
257 Command() in Command() argument
272 Command getCommand(sp<CameraContext> currentCamera); argument
288 Vector<Command> mCommands;
Dqcamera_test.cpp3150 mCommands.push_back(Command( in Interpreter()
3153 mCommands.push_back(Command( in Interpreter()
3196 Interpreter::Command Interpreter::getCommand( in getCommand()
3203 return Interpreter::Command( in getCommand()
3371 Interpreter::Command command = in FunctionalTest()
/hardware/interfaces/compatibility_matrices/build/
Dvintf_compatibility_matrix.go38 Command: `${assembleVintfCmd} -i ${inputs} -o ${out}`,
/hardware/interfaces/graphics/composer/2.3/
DIComposerClient.hal24 import android.hardware.graphics.composer@2.1::IComposerClient.Command;
112 enum Command : @2.2::IComposerClient.Command {
154 SET_LAYER_COLOR_TRANSFORM = 0x40d << @2.1::IComposerClient.Command:OPCODE_SHIFT,
170 SET_LAYER_PER_FRAME_METADATA_BLOBS = 0x304 << @2.1::IComposerClient.Command:OPCODE_SHIFT,
/hardware/interfaces/graphics/composer/2.2/
DIComposerClient.hal94 enum Command : @2.1::IComposerClient.Command {
109 SET_LAYER_PER_FRAME_METADATA = 0x303 << @2.1::IComposerClient.Command:OPCODE_SHIFT,
122 SET_LAYER_FLOAT_COLOR = 0x40c << @2.1::IComposerClient.Command:OPCODE_SHIFT,
/hardware/interfaces/tv/cec/2.0/
Dtypes.hal372 * CEC UI Command Codes as specified in CEC Table 11-31 of the CEC spec 2.0b
/hardware/interfaces/audio/effect/all-versions/vts/functional/
DVtsHalAudioEffectTargetTest.cpp489 TEST_F(AudioEffectHidlTest, Command) { in TEST_F() argument
/hardware/interfaces/graphics/composer/2.1/
DIComposerClient.hal1097 enum Command : int32_t {