HomeSort by relevance Sort by last modified time
    Searched defs:EventPacket (Results 1 - 3 of 3) sorted by null

  /system/bt/vendor_libs/test_vendor_lib/include/
event_packet.h 42 class EventPacket : public Packet {
44 virtual ~EventPacket() override = default;
65 static std::unique_ptr<EventPacket> CreateCommandCompleteEvent(
84 static std::unique_ptr<EventPacket> CreateCommandStatusEvent(
109 static std::unique_ptr<EventPacket> CreateInquiryResultEvent(
142 static std::unique_ptr<EventPacket> CreateExtendedInquiryResultEvent(
158 EventPacket(uint8_t event_code, const std::vector<uint8_t>& payload);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventPacket.java 31 public class EventPacket extends CommandPacket {
34 * Creates EventPacket from array of bytes including header and data sections.
38 public EventPacket(byte[] p) {
  /system/bt/vendor_libs/test_vendor_lib/src/
event_packet.cc 31 EventPacket::EventPacket(uint8_t event_code,
37 uint8_t EventPacket::GetEventCode() const {
42 std::unique_ptr<EventPacket> EventPacket::CreateCommandCompleteEvent(
55 return std::unique_ptr<EventPacket>(
56 new EventPacket(HCI_COMMAND_COMPLETE_EVT, payload));
60 std::unique_ptr<EventPacket> EventPacket::CreateCommandStatusEvent(
72 return std::unique_ptr<EventPacket>(
    [all...]

Completed in 44 milliseconds