Home
last modified time | relevance | path

Searched refs:LePhy (Results 1 – 14 of 14) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth_gatt.rs2 use bt_topshim::profiles::gatt::{AdvertisingStatus, GattStatus, LeDiscMode, LePhy};
57 tx_phy: LePhy, in on_phy_update() argument
58 rx_phy: LePhy, in on_phy_update() argument
65 fn on_phy_read(&mut self, addr: RawAddress, tx_phy: LePhy, rx_phy: LePhy, status: GattStatus) { in on_phy_read() argument
247 tx_phy: LePhy, in on_phy_update() argument
248 rx_phy: LePhy, in on_phy_update() argument
255 fn on_phy_read(&mut self, addr: RawAddress, tx_phy: LePhy, rx_phy: LePhy, status: GattStatus) { in on_phy_read() argument
374 impl_dbus_arg_enum!(LePhy);
569 primary_phy: LePhy,
570 secondary_phy: LePhy,
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dbt_gatt.rs2 use bt_topshim::profiles::gatt::LePhy;
34 pub(crate) connect_phy: LePhy,
45 connect_phy: LePhy::Phy1m, in new()
Dbt_adv.rs8 use bt_topshim::profiles::gatt::{LeDiscMode, LePhy};
37 primary_phy: LePhy::Phy1m, in new()
38 secondary_phy: LePhy::Phy1m, in new()
Ddbus_iface.rs12 use bt_topshim::profiles::gatt::{AdvertisingStatus, GattStatus, LeDiscMode, LePhy};
106 impl_dbus_arg_enum!(LePhy);
1307 primary_phy: LePhy,
1308 secondary_phy: LePhy,
1628 phy: LePhy, in client_connect() argument
1643 tx_phy: LePhy, in client_set_preferred_phy() argument
1644 rx_phy: LePhy, in client_set_preferred_phy() argument
1847 tx_phy: LePhy, in server_set_preferred_phy() argument
1848 rx_phy: LePhy, in server_set_preferred_phy() argument
1886 tx_phy: LePhy, in on_phy_update() argument
[all …]
Dcallbacks.rs14 use bt_topshim::profiles::gatt::{AdvertisingStatus, GattStatus, LePhy};
731 tx_phy: LePhy, in on_phy_update() argument
732 rx_phy: LePhy, in on_phy_update() argument
744 fn on_phy_read(&mut self, addr: RawAddress, tx_phy: LePhy, rx_phy: LePhy, status: GattStatus) { in on_phy_read() argument
1085 tx_phy: LePhy, in on_phy_update() argument
1086 rx_phy: LePhy, in on_phy_update() argument
1098 fn on_phy_read(&mut self, addr: RawAddress, tx_phy: LePhy, rx_phy: LePhy, status: GattStatus) { in on_phy_read() argument
Dcommand_handler.rs15 use bt_topshim::profiles::gatt::{GattStatus, LePhy};
1211 "Phy1m" => LePhy::Phy1m, in cmd_gatt()
1212 "Phy2m" => LePhy::Phy2m, in cmd_gatt()
1213 "PhyCoded" => LePhy::PhyCoded, in cmd_gatt()
/packages/modules/Bluetooth/floss/pandora/server/
Dhost.py346 parameters['primary_phy'] = floss_enums.LePhy.PHY1M
348 parameters['primary_phy'] = floss_enums.LePhy.PHY_CODED
352 parameters['secondary_phy'] = floss_enums.LePhy.INVALID
354 parameters['secondary_phy'] = floss_enums.LePhy.PHY1M
356 parameters['secondary_phy'] = floss_enums.LePhy.PHY2M
358 parameters['secondary_phy'] = floss_enums.LePhy.PHY_CODED
497 if scan_result['primary_phy'] == floss_enums.LePhy.PHY1M:
499 elif scan_result['primary_phy'] == floss_enums.LePhy.PHY_CODED:
504 if scan_result['secondary_phy'] == floss_enums.LePhy.INVALID:
506 elif scan_result['secondary_phy'] == floss_enums.LePhy.PHY1M:
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Ddis.rs14 use bt_topshim::profiles::gatt::{GattStatus, LePhy};
239 _tx_phy: LePhy, in on_phy_update() argument
240 _rx_phy: LePhy, in on_phy_update() argument
247 _tx_phy: LePhy, in on_phy_read() argument
248 _rx_phy: LePhy, in on_phy_read() argument
Dbattery_service.rs15 use bt_topshim::profiles::gatt::{GattStatus, LePhy};
270 LePhy::Phy1m, in init_device()
493 _tx_phy: LePhy, in on_phy_update() argument
494 _rx_phy: LePhy, in on_phy_update() argument
502 _tx_phy: LePhy, in on_phy_read() argument
503 _rx_phy: LePhy, in on_phy_read() argument
Dbluetooth_gatt.rs14 GattStatus, LePhy, MsftAdvMonitor, MsftAdvMonitorAddress, MsftAdvMonitorPattern,
516 phy: LePhy, in client_connect() argument
613 tx_phy: LePhy, in client_set_preferred_phy() argument
614 rx_phy: LePhy, in client_set_preferred_phy() argument
681 tx_phy: LePhy, in server_set_preferred_phy() argument
682 rx_phy: LePhy, in server_set_preferred_phy() argument
951 _tx_phy: LePhy, in on_phy_update() argument
952 _rx_phy: LePhy, in on_phy_update() argument
960 _tx_phy: LePhy, in on_phy_read() argument
961 _rx_phy: LePhy, in on_phy_read() argument
[all …]
Dbluetooth_adv.rs6 use bt_topshim::profiles::gatt::{AdvertisingStatus, Gatt, GattAdvCallbacks, LeDiscMode, LePhy};
43 pub primary_phy: LePhy,
45 pub secondary_phy: LePhy,
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs532 pub enum LePhy { enum
539 impl From<LePhy> for i32 {
540 fn from(item: LePhy) -> Self { in from()
545 impl From<LePhy> for u8 {
546 fn from(item: LePhy) -> Self { in from()
551 impl Default for LePhy { implementation
553 LePhy::Invalid in default()
/packages/modules/Bluetooth/floss/pandora/floss/
Dfloss_enums.py42 class LePhy(enum.IntEnum): class
Dgatt_client.py724 phy=floss_enums.LePhy.PHY1M):