Searched refs:send_llcp_packet (Results 1 – 4 of 4) sorted by relevance
/packages/modules/Bluetooth/tools/rootcanal/rust/src/ |
D | ffi.rs | 40 send_llcp_packet: unsafe extern "C" fn(user: *mut (), handle: u16, data: *const u8, len: usize), field 85 pub(crate) fn send_llcp_packet(&self, handle: u16, packet: &[u8]) { in send_llcp_packet() method 86 unsafe { (self.send_llcp_packet)(self.user_pointer, handle, packet.as_ptr(), packet.len()) } in send_llcp_packet()
|
/packages/modules/Bluetooth/tools/rootcanal/rust/src/llcp/ |
D | iso.rs | 333 fn send_llcp_packet<P: Into<llcp::LlcpPacket>>(&self, acl_connection_handle: u16, packet: P) { in send_llcp_packet() method 334 self.ops.send_llcp_packet(acl_connection_handle, &packet.into().encode_to_vec().unwrap()) in send_llcp_packet() 381 self.send_llcp_packet( in deque_cis_connection_request() 955 self.send_llcp_packet( in hci_le_accept_cis_request() 1022 self.send_llcp_packet( in hci_le_reject_cis_request() 1202 self.send_llcp_packet( in hci_disconnect() 1276 self.send_llcp_packet( in ll_cis_rsp()
|
/packages/modules/Bluetooth/tools/rootcanal/rust/include/ |
D | rootcanal_rs.h | 37 void (*send_llcp_packet)(void* user, uint16_t handle, const uint8_t* data, member
|
/packages/modules/Bluetooth/tools/rootcanal/model/controller/ |
D | link_layer_controller.cc | 2097 .send_llcp_packet = in LinkLayerController()
|