Home
last modified time | relevance | path

Searched refs:OpCode (Results 1 – 9 of 9) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/controller/
Ddual_mode_controller.cc39 using test_vendor_lib::hci::OpCode;
100 void DualModeController::SendCommandCompleteSuccess(OpCode command_opcode) const { in SendCommandCompleteSuccess()
109 void DualModeController::SendCommandCompleteOnlyStatus(OpCode command_opcode, hci::Status status) c… in SendCommandCompleteOnlyStatus()
113 void DualModeController::SendCommandCompleteStatusAndAddress(OpCode command_opcode, hci::Status sta… in SendCommandCompleteStatusAndAddress()
119 void DualModeController::SendCommandStatus(hci::Status status, OpCode command_opcode) const { in SendCommandStatus()
123 void DualModeController::SendCommandStatusSuccess(OpCode command_opcode) const { in SendCommandStatusSuccess()
142 SET_HANDLER(OpCode::RESET, HciReset); in DualModeController()
143 SET_HANDLER(OpCode::READ_BUFFER_SIZE, HciReadBufferSize); in DualModeController()
144 SET_HANDLER(OpCode::HOST_BUFFER_SIZE, HciHostBufferSize); in DualModeController()
145 SET_HANDLER(OpCode::SNIFF_SUBRATING, HciSniffSubrating); in DualModeController()
[all …]
Ddual_mode_controller.h368 …void SendCommandComplete(hci::OpCode command_opcode, const std::vector<uint8_t>& return_parameters…
371 void SendCommandCompleteSuccess(hci::OpCode command_opcode) const;
376 void SendCommandCompleteOnlyStatus(hci::OpCode command_opcode, hci::Status status) const;
378 void SendCommandCompleteStatusAndAddress(hci::OpCode command_opcode, hci::Status status,
382 void SendCommandStatus(hci::Status status, hci::OpCode command_opcode) const;
385 void SendCommandStatusSuccess(hci::OpCode command_opcode) const;
Dlink_layer_controller.cc73 hci::Status LinkLayerController::SendCommandToRemoteByAddress(hci::OpCode opcode, PacketView<true> … in SendCommandToRemoteByAddress()
88 hci::Status LinkLayerController::SendCommandToRemoteByHandle(hci::OpCode opcode, PacketView<true> a… in SendCommandToRemoteByHandle()
212 hci::OpCode opcode = static_cast<hci::OpCode>(command.GetOpcode()); in IncomingCommandPacket()
217 case (hci::OpCode::REMOTE_NAME_REQUEST): { in IncomingCommandPacket()
232 case (hci::OpCode::READ_REMOTE_SUPPORTED_FEATURES): in IncomingCommandPacket()
239 case (hci::OpCode::READ_REMOTE_EXTENDED_FEATURES): { in IncomingCommandPacket()
257 case (hci::OpCode::READ_REMOTE_VERSION_INFORMATION): in IncomingCommandPacket()
263 case (hci::OpCode::READ_CLOCK_OFFSET): in IncomingCommandPacket()
589 hci::OpCode opcode = static_cast<hci::OpCode>(response.GetOpcode()); in IncomingResponsePacket()
596 case (hci::OpCode::REMOTE_NAME_REQUEST): { in IncomingResponsePacket()
[all …]
Dlink_layer_controller.h38 …hci::Status SendCommandToRemoteByAddress(hci::OpCode opcode, packets::PacketView<true> args, const…
40 …hci::Status SendCommandToRemoteByHandle(hci::OpCode opcode, packets::PacketView<true> args, uint16…
/system/bt/vendor_libs/test_vendor_lib/packets/hci/
Dcommand_packet_builder.h37 …static std::unique_ptr<CommandPacketBuilder> Create(hci::OpCode opcode, std::unique_ptr<BasePacket…
44 CommandPacketBuilder(hci::OpCode opcode, std::unique_ptr<BasePacketBuilder> payload);
46 hci::OpCode opcode_;
Devent_packet_builder.cc25 using test_vendor_lib::hci::OpCode;
48 hci::OpCode command_opcode, const vector<uint8_t>& event_return_parameters) { in CreateCommandCompleteEvent()
59 …PacketBuilder> EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(hci::OpCode command_opcode, in CreateCommandCompleteOnlyStatusEvent()
72 hci::OpCode command_opcode, hci::Status status, const Address& address) { in CreateCommandCompleteStatusAndAddressEvent()
98 … hci::OpCode command_opcode) { in CreateCommandStatusEvent()
134 … EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(OpCode::DELETE_STORED_LINK_KEY, status); in CreateCommandCompleteDeleteStoredLinkKey()
145 EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(OpCode::READ_LOCAL_NAME, status); in CreateCommandCompleteReadLocalName()
162 EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(OpCode::READ_LOCAL_NAME, status); in CreateCommandCompleteReadAuthenticationEnable()
172 …EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(OpCode::READ_LOCAL_VERSION_INFORMATION, s… in CreateCommandCompleteReadLocalVersionInformation()
201 …EventPacketBuilder::CreateCommandCompleteOnlyStatusEvent(OpCode::READ_LOCAL_SUPPORTED_COMMANDS, st… in CreateCommandCompleteReadLocalSupportedCommands()
[all …]
Dcommand_packet_builder.cc22 using test_vendor_lib::hci::OpCode;
27 CommandPacketBuilder::CommandPacketBuilder(OpCode opcode, std::unique_ptr<BasePacketBuilder> payloa… in CommandPacketBuilder()
Devent_packet_builder.h53 hci::OpCode command_opcode, const std::vector<uint8_t>& event_return_parameters);
55 …static std::unique_ptr<EventPacketBuilder> CreateCommandCompleteOnlyStatusEvent(hci::OpCode comman…
58 …static std::unique_ptr<EventPacketBuilder> CreateCommandCompleteStatusAndAddressEvent(hci::OpCode
65 …e_ptr<EventPacketBuilder> CreateCommandStatusEvent(hci::Status status, hci::OpCode command_opcode);
182 …static std::unique_ptr<EventPacketBuilder> CreateLoopbackCommandEvent(hci::OpCode opcode, PacketVi…
/system/bt/vendor_libs/test_vendor_lib/include/hci/
Dop_code.h34 enum class OpCode : uint16_t { enum