Home
last modified time | relevance | path

Searched refs:BtSdpRecord (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dsdp.rs37 impl From<&BtSdpRecord> for BtSdpType {
38 fn from(record: &BtSdpRecord) -> Self { in from()
40 BtSdpRecord::HeaderOverlay(header) => header.sdp_type.clone(), in from()
41 BtSdpRecord::MapMas(record) => record.hdr.sdp_type.clone(), in from()
42 BtSdpRecord::MapMns(record) => record.hdr.sdp_type.clone(), in from()
43 BtSdpRecord::PbapPse(record) => record.hdr.sdp_type.clone(), in from()
44 BtSdpRecord::PbapPce(record) => record.hdr.sdp_type.clone(), in from()
45 BtSdpRecord::OppServer(record) => record.hdr.sdp_type.clone(), in from()
46 BtSdpRecord::SapServer(record) => record.hdr.sdp_type.clone(), in from()
47 BtSdpRecord::Dip(record) => record.hdr.sdp_type.clone(), in from()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth.rs15 BtSdpOpsRecord, BtSdpPceRecord, BtSdpPseRecord, BtSdpRecord, BtSdpSapRecord, BtSdpType,
162 sdp_records: Vec<BtSdpRecord>, in on_sdp_search_complete() argument
167 fn on_sdp_record_created(&mut self, record: BtSdpRecord, handle: i32) { in on_sdp_record_created() argument
344 impl DBusArg for BtSdpRecord { implementation
353 ) -> Result<BtSdpRecord, Box<dyn std::error::Error>> { in from_dbus() argument
359 BtSdpRecord::HeaderOverlay(arg_0) in from_dbus()
363 BtSdpRecord::MapMas(arg_0) in from_dbus()
367 BtSdpRecord::MapMns(arg_0) in from_dbus()
371 BtSdpRecord::PbapPse(arg_0) in from_dbus()
375 BtSdpRecord::PbapPce(arg_0) in from_dbus()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Ddbus_iface.rs22 BtSdpOpsRecord, BtSdpPceRecord, BtSdpPseRecord, BtSdpRecord, BtSdpSapRecord, BtSdpType,
256 impl DBusArg for BtSdpRecord { implementation
265 ) -> Result<BtSdpRecord, Box<dyn std::error::Error>> { in from_dbus() argument
271 BtSdpRecord::HeaderOverlay(arg_0) in from_dbus()
275 BtSdpRecord::MapMas(arg_0) in from_dbus()
279 BtSdpRecord::MapMns(arg_0) in from_dbus()
283 BtSdpRecord::PbapPse(arg_0) in from_dbus()
287 BtSdpRecord::PbapPce(arg_0) in from_dbus()
291 BtSdpRecord::OppServer(arg_0) in from_dbus()
295 BtSdpRecord::SapServer(arg_0) in from_dbus()
[all …]
Dcallbacks.rs20 use bt_topshim::profiles::sdp::BtSdpRecord;
305 sdp_records: Vec<BtSdpRecord>, in on_sdp_search_complete() argument
319 fn on_sdp_record_created(&mut self, record: BtSdpRecord, handle: i32) { in on_sdp_record_created() argument
321 if let BtSdpRecord::Mps(_) = record { in on_sdp_record_created()
Dcommand_handler.rs17 use bt_topshim::profiles::sdp::{BtSdpMpsRecord, BtSdpRecord};
2157 .create_sdp_record(BtSdpRecord::Mps(BtSdpMpsRecord::default())); in cmd_telephony()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs18 profiles::sdp::{BtSdpRecord, Sdp, SdpCallbacks, SdpCallbacksDispatcher},
236 fn create_sdp_record(&mut self, sdp_record: BtSdpRecord) -> bool; in create_sdp_record()
553 sdp_records: Vec<BtSdpRecord>, in on_sdp_search_complete() argument
557 fn on_sdp_record_created(&mut self, record: BtSdpRecord, handle: i32); in on_sdp_record_created() argument
1533 records: Vec<BtSdpRecord>, in sdp_search() argument
2692 fn create_sdp_record(&mut self, sdp_record: BtSdpRecord) -> bool { in create_sdp_record()
3025 records: Vec<BtSdpRecord>, in sdp_search() argument
3037 BtSdpRecord::HeaderOverlay(header) => header.uuid = uuid, in sdp_search()
3038 BtSdpRecord::MapMas(record) => record.hdr.uuid = uuid, in sdp_search()
3039 BtSdpRecord::MapMns(record) => record.hdr.uuid = uuid, in sdp_search()
[all …]