Home
last modified time | relevance | path

Searched refs:address_type (Results 1 – 25 of 87) sorted by relevance

1234

/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dhid_host.rs240 address_type: BtAddrType, in connect()
248 address_type.into(), in connect()
257 address_type: BtAddrType, in disconnect()
266 address_type.into(), in disconnect()
276 address_type: BtAddrType, in virtual_unplug()
284 address_type.into(), in virtual_unplug()
293 address_type: BtAddrType, in set_info()
302 address_type.into(), in set_info()
312 address_type: BtAddrType, in get_protocol()
321 address_type.into(), in get_protocol()
[all …]
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_hid_host.cpp270 jbyteArray address, jint address_type, in connectHidNative() argument
282 (RawAddress*)addr, (tBLE_ADDR_TYPE)address_type, in connectHidNative()
295 jbyteArray address, jint address_type, in disconnectHidNative() argument
309 (RawAddress*)addr, (tBLE_ADDR_TYPE)address_type, (tBT_TRANSPORT)transport, in disconnectHidNative()
322 jbyteArray address, jint address_type, in getProtocolModeNative() argument
336 (RawAddress*)addr, (tBLE_ADDR_TYPE)address_type, (tBT_TRANSPORT)transport, in getProtocolModeNative()
348 jbyteArray address, jint address_type, in virtualUnPlugNative() argument
360 (RawAddress*)addr, (tBLE_ADDR_TYPE)address_type, in virtualUnPlugNative()
371 jbyteArray address, jint address_type, in setProtocolModeNative() argument
398 (RawAddress*)addr, (tBLE_ADDR_TYPE)address_type, (tBT_TRANSPORT)transport, in setProtocolModeNative()
[all …]
/packages/modules/Bluetooth/system/gd/hci/
Dle_scanning_reassembler.cc39 uint8_t address_type, in ProcessAdvertisingReport() argument
48 if (address_type != (uint8_t)DirectAdvertisingAddressType::NO_ADDRESS_PROVIDED && in ProcessAdvertisingReport()
54 AdvertisingKey key(address, DirectAdvertisingAddressType(address_type), advertising_sid); in ProcessAdvertisingReport()
145 Address address, DirectAdvertisingAddressType address_type, uint8_t sid) in AdvertisingKey() argument
148 if (address_type != DirectAdvertisingAddressType::NO_ADDRESS_PROVIDED) { in AdvertisingKey()
149 this->address = AddressWithType(address, AddressType(address_type)); in AdvertisingKey()
Daddress_with_type.h37 AddressWithType(Address address, AddressType address_type) in AddressWithType() argument
38 : address_(std::move(address)), address_type_(address_type) {} in AddressWithType()
153 bluetooth::hci::AddressType address_type = val.GetAddressType();
155 …cast<uint8_t*>(&int_addr) + bluetooth::hci::Address::kLength, &address_type, sizeof(address_type));
Dle_scanning_reassembler.h56 uint8_t address_type,
100 AdvertisingKey(Address address, DirectAdvertisingAddressType address_type, uint8_t sid);
/packages/modules/Bluetooth/system/blueberry/tests/sl4a_sl4a/lib/
Dle_advertiser.py52 …def advertise_public_extended_pdu(self, address_type=common.RANDOM_DEVICE_ADDRESS, name="SL4A Devi… argument
56 logging.info("Configuring advertisement with address type %d", address_type)
62 self.device.sl4a.bleSetAdvertiseSettingsOwnAddressType(address_type)
/packages/modules/Bluetooth/system/rust/src/core/
Daddress.rs20 pub address_type: AddressType, field
25 pub const EMPTY: Self = Self { address: [0, 0, 0, 0, 0, 0], address_type: AddressType::Public };
/packages/modules/Bluetooth/tools/rootcanal/test/LL/
Dscan_timeout.py62 address_type=hci.AddressType.RANDOM_DEVICE_ADDRESS,
87 address_type=hci.AddressType.RANDOM_DEVICE_ADDRESS,
107 address_type=hci.AddressType.RANDOM_DEVICE_ADDRESS,
/packages/modules/Bluetooth/floss/hcidoc/src/groups/
Dinformational.rs117 address_type: AddressType, field
127 address_type: AddressType::None, in new()
175 address_type = self.address_type, in fmt()
531 fn report_address_type(&mut self, address: &Address, address_type: AddressType) { in report_address_type()
533 device.address_type.update(address_type); in report_address_type()
960 let address_type_order = a.address_type.cmp(&b.address_type); in report()
/packages/modules/Bluetooth/system/main/shim/
Dle_scanning_manager.cc134 uint16_t event_type, tBLE_ADDR_TYPE address_type,
145 tBLE_ADDR_TYPE* address_type);
429 tBLE_ADDR_TYPE address_type = BLE_ADDR_RANDOM; in StartSync() local
432 address_type = p_i->inq_info.results.ble_addr_type; // Random in StartSync()
434 btm_random_pseudo_to_identity_addr(&address, &address_type); in StartSync()
435 address_type &= ~BLE_ADDR_TYPE_ID_BIT; in StartSync()
437 sid, ToAddressWithType(address, address_type), skip, timeout, reg_id); in StartSync()
519 uint16_t event_type, uint8_t address_type, bluetooth::hci::Address address, in OnScanResult() argument
524 tBLE_ADDR_TYPE ble_addr_type = to_ble_addr_type(address_type); in OnScanResult()
537 event_type, static_cast<uint8_t>(address_type), raw_address, primary_phy, in OnScanResult()
/packages/modules/Bluetooth/floss/pandora/floss/
Dadvertising_client.py47 def on_own_address_read(self, advertiser_id, address_type, address): argument
226 def OnOwnAddressRead(self, advertiser_id, address_type, address): argument
229 observer.on_own_address_read(advertiser_id, address_type, address)
313 def on_own_address_read(self, advertiser_id, address_type, address): argument
316 'address: %s', advertiser_id, address_type, address)
/packages/modules/Bluetooth/system/test/mock/
Dmock_stack_metrics_logging.h128 android::bluetooth::AddressTypeEnum address_type,
143 android::bluetooth::AddressTypeEnum address_type, in operator()
149 body2(address, address_type, source_type, source_name, manufacturer, model, in operator()
Dmock_stack_metrics_logging.cc103 android::bluetooth::AddressTypeEnum address_type, in log_manufacturer_info() argument
112 address, address_type, source_type, source_name, manufacturer, model, in log_manufacturer_info()
Dmock_main_shim_metrics_api.h319 android::bluetooth::AddressTypeEnum address_type,
334 android::bluetooth::AddressTypeEnum address_type, in operator()
340 body(raw_address, address_type, source_type, source_name, manufacturer, in operator()
/packages/modules/Bluetooth/system/stack/metrics/
Dstack_metrics_logging.cc60 android::bluetooth::AddressTypeEnum address_type, in log_manufacturer_info() argument
68 address, address_type, source_type, source_name, manufacturer, model, in log_manufacturer_info()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs1469 address_type: BtAddrType, in connection_state()
1478 address_type: BtAddrType, in hid_info()
1487 address_type: BtAddrType, in protocol_mode()
1497 address_type: BtAddrType, in idle_time()
1507 address_type: BtAddrType, in get_report()
1518 address_type: BtAddrType, in handshake()
3064 address_type: BtAddrType, in connection_state()
3109 address_type, in connection_state()
3119 address_type: BtAddrType, in hid_info()
3126 address_type, in hid_info()
[all …]
/packages/modules/Bluetooth/tools/rootcanal/test/LL/DDI/SCN/
DBV_18_C.py119 address_type=hci.AddressType.PUBLIC_DEVICE_ADDRESS,
138 address_type=hci.AddressType.PUBLIC_DEVICE_ADDRESS,
DBV_13_C.py96 address_type=hci.AddressType.PUBLIC_DEVICE_ADDRESS,
135 address_type=hci.AddressType.RANDOM_DEVICE_ADDRESS,
DBV_20_C.py180 address_type=hci.AddressType.PUBLIC_DEVICE_ADDRESS,
245 address_type=hci.AddressType.PUBLIC_DEVICE_ADDRESS,
/packages/modules/Bluetooth/tools/rootcanal/include/hci/
Daddress_with_type.h38 AddressWithType(Address address, AddressType address_type) in AddressWithType() argument
39 : address_(std::move(address)), address_type_(address_type) {} in AddressWithType()
/packages/modules/Bluetooth/system/rust/src/connection/
Dacceptlist_manager.rs122 AddressWithType { address: [1, 2, 3, 4, 5, 6], address_type: AddressType::Public };
124 AddressWithType { address: [1, 2, 3, 4, 5, 6], address_type: AddressType::Random };
126 AddressWithType { address: [1, 2, 3, 4, 5, 7], address_type: AddressType::Random };
/packages/modules/Bluetooth/system/blueberry/tests/gd/hal/
Dsimple_hal_test.py48 hci.LeAddDeviceToFilterAcceptList(address_type=hci.FilterAcceptListAddressType.RANDOM,
57 … command = hci.LeAddDeviceToFilterAcceptList(address_type=hci.FilterAcceptListAddressType.RANDOM,
/packages/modules/Bluetooth/system/gd/hci/facade/
Dle_scanning_manager_facade.cc129 uint8_t address_type, in OnScanResult() argument
141 le_extended_advertising_report.address_type_ = (DirectAdvertisingAddressType)address_type; in OnScanResult()
/packages/modules/Bluetooth/system/blueberry/tests/sl4a_sl4a/security/
Doob_pairing_test.py97 def __test_scan(self, address_type="public"): argument
100 …self.dut_scanner_.start_identity_address_scan(cert_public_address, ble_address_types[address_type])
/packages/modules/Bluetooth/system/rust/src/core/ffi/
Dtypes.h33 AddressType address_type; member

1234