Home
last modified time | relevance | path

Searched refs:LeDiscMode (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dbt_adv.rs8 use bt_topshim::profiles::gatt::{LeDiscMode, LePhy};
31 discoverable: LeDiscMode::GeneralDiscoverable, in new()
Ddbus_iface.rs12 use bt_topshim::profiles::gatt::{AdvertisingStatus, GattStatus, LeDiscMode, LePhy};
108 impl_dbus_arg_enum!(LeDiscMode);
1314 discoverable: LeDiscMode,
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs501 pub enum LeDiscMode { enum
508 impl From<u32> for LeDiscMode { implementation
510 LeDiscMode::from_u32(num).unwrap_or(LeDiscMode::Invalid) in from()
514 impl Into<u32> for LeDiscMode { implementation
520 impl Default for LeDiscMode { implementation
522 LeDiscMode::Invalid in default()
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth_gatt.rs2 use bt_topshim::profiles::gatt::{AdvertisingStatus, GattStatus, LeDiscMode, LePhy};
373 impl_dbus_arg_enum!(LeDiscMode);
560 discoverable: LeDiscMode,
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_adv.rs6 use bt_topshim::profiles::gatt::{AdvertisingStatus, Gatt, GattAdvCallbacks, LeDiscMode, LePhy};
31 pub discoverable: LeDiscMode,
235 LeDiscMode::GeneralDiscoverable => is_discoverable = true, in from()