Searched refs:IsoPacket (Results 1 – 9 of 9) sorted by relevance
/system/bt/gd/rust/hal/src/ |
D | lib.rs | 45 use bt_packets::hci::{AclPacket, CommandPacket, EventPacket, IsoPacket}; 57 pub iso_tx: UnboundedSender<IsoPacket>, 58 pub iso_rx: Arc<Mutex<UnboundedReceiver<IsoPacket>>>, 66 pub iso_rx: UnboundedReceiver<IsoPacket>, 67 pub iso_tx: UnboundedSender<IsoPacket>,
|
D | hidl_hal.rs | 3 use bt_packets::hci::{AclPacket, CommandPacket, EventPacket, IsoPacket, Packet}; 63 iso_tx: UnboundedSender<IsoPacket>, 96 match IsoPacket::parse(data) { in on_iso() 105 mut iso_rx: UnboundedReceiver<IsoPacket>, in dispatch_outgoing() argument
|
D | facade.rs | 9 use bt_packets::hci::{AclPacket, CommandPacket, EventPacket, IsoPacket}; 37 iso_rx: RxAdapter<IsoPacket>, 73 iso_tx.send(IsoPacket::parse(&data.take_payload()).unwrap()).await.unwrap(); in send_iso()
|
D | rootcanal_hal.rs | 7 use bt_packets::hci::{AclPacket, CommandPacket, EventPacket, IsoPacket, Packet}; 77 iso_tx: UnboundedSender<IsoPacket>, in dispatch_incoming() argument 123 match IsoPacket::parse(&frozen) { in dispatch_incoming() 135 mut iso_rx: UnboundedReceiver<IsoPacket>, in dispatch_outgoing() argument
|
D | snoop.rs | 5 use bt_packets::hci::{AclPacket, CommandPacket, EventPacket, IsoPacket, Packet}; 49 pub tx: Sender<IsoPacket>, 51 pub rx: Arc<Mutex<Receiver<IsoPacket>>>, 138 let (iso_down_tx, mut iso_down_rx) = channel::<IsoPacket>(10); in provide_snooped_hal() 139 let (iso_up_tx, iso_up_rx) = channel::<IsoPacket>(10); in provide_snooped_hal()
|
/system/bt/gd/iso/ |
D | facade.proto | 12 rpc FetchIsoData(LeCisHandleMsg) returns (stream IsoPacket) {} 14 rpc SendIsoPacket(IsoPacket) returns (google.protobuf.Empty) {} 17 message IsoPacket { message
|
D | facade.cc | 155 …::grpc::ServerContext* context, const LeCisHandleMsg* request, ::grpc::ServerWriter<IsoPacket>* wr… in FetchIsoData() 168 const ::bluetooth::iso::IsoPacket* request, in SendIsoPacket() 178 IsoPacket packet; in OnIsoPacketReceived() 203 ::bluetooth::grpc::GrpcEventQueue<IsoPacket> le_iso_data_{"LE ISO data"};
|
/system/bt/gd/rust/hci/src/ |
D | facade.rs | 13 AclPacket, CommandPacket, EventCode, EventPacket, IsoPacket, LeMetaEventPacket, SubeventCode, 62 pub iso_tx: Sender<IsoPacket>, 63 pub iso_rx: RxAdapter<IsoPacket>,
|
/system/bt/gd/cert/ |
D | py_le_iso.py | 63 … self._device.iso.SendIsoPacket(iso_facade_pb2.IsoPacket(handle=self._cis_handle, payload=payload))
|