Home
last modified time | relevance | path

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

/system/bt/gd/rust/hal/src/
Dlib.rs45 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>,
Dhidl_hal.rs3 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
Dfacade.rs9 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()
Drootcanal_hal.rs7 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
Dsnoop.rs5 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/
Dfacade.proto12 rpc FetchIsoData(LeCisHandleMsg) returns (stream IsoPacket) {}
14 rpc SendIsoPacket(IsoPacket) returns (google.protobuf.Empty) {}
17 message IsoPacket { message
Dfacade.cc155 …::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/
Dfacade.rs13 AclPacket, CommandPacket, EventCode, EventPacket, IsoPacket, LeMetaEventPacket, SubeventCode,
62 pub iso_tx: Sender<IsoPacket>,
63 pub iso_rx: RxAdapter<IsoPacket>,
/system/bt/gd/cert/
Dpy_le_iso.py63 … self._device.iso.SendIsoPacket(iso_facade_pb2.IsoPacket(handle=self._cis_handle, payload=payload))