Home
last modified time | relevance | path

Searched refs:in_data_tx (Results 1 – 3 of 3) sorted by relevance

/system/nfc/src/rust/hal/
Dhal.rs109 pub in_data_tx: UnboundedSender<DataPacket>, field
117 let (in_data_tx, in_data_rx) = unbounded_channel(); in new()
122 Self { out_cmd_rx, in_cmd_tx, out_data_rx, in_data_tx }, in new()
Dhidl_hal.rs36 in_data_tx: inner_hal.in_data_tx, in init()
116 in_data_tx: UnboundedSender<DataPacket>, field
149 Ok(p) => callbacks.as_ref().unwrap().in_data_tx.send(p).unwrap(), in on_data()
Drootcanal_hal.rs40 tokio::spawn(dispatch_incoming(inner_hal.in_cmd_tx, inner_hal.in_data_tx, reader)); in init()
54 in_data_tx: UnboundedSender<DataPacket>, in dispatch_incoming()
79 if in_data_tx.send(p).is_err() { in dispatch_incoming()