/system/bt/stack/include/ |
D | security_client_callbacks.h | 39 DEV_CLASS dev_class, tBTM_BD_NAME bd_name, 48 DEV_CLASS dev_class, 66 DEV_CLASS dev_class,
|
D | btm_api_types.h | 317 DEV_CLASS dev_class; member 446 DEV_CLASS dev_class; member 678 DEV_CLASS dev_class; /* peer CoD */ member 692 DEV_CLASS dev_class; /* peer CoD */ member 699 DEV_CLASS dev_class; /* peer CoD */ member 714 DEV_CLASS dev_class; /* peer CoD */ member
|
D | sco_hci_link_interface.h | 34 extern void btm_sco_conn_req(const RawAddress& bda, const DEV_CLASS& dev_class,
|
D | btm_api.h | 85 tBTM_STATUS BTM_SetDeviceClass(DEV_CLASS dev_class); 632 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class,
|
D | btm_client_interface.h | 118 bool (*BTM_SecAddDevice)(const RawAddress& bd_addr, DEV_CLASS dev_class, 204 tBTM_STATUS (*BTM_SetDeviceClass)(DEV_CLASS dev_class);
|
/system/bt/btif/src/ |
D | btif_util.cc | 64 uint32_t devclass2uint(DEV_CLASS dev_class) { in devclass2uint() argument 67 if (dev_class != NULL) { in devclass2uint() 70 cod = (dev_class[2]) | (dev_class[1] << 8) | (dev_class[0] << 16); in devclass2uint() 74 void uint2devclass(uint32_t cod, DEV_CLASS dev_class) { in uint2devclass() argument 75 dev_class[2] = (uint8_t)cod; in uint2devclass() 76 dev_class[1] = (uint8_t)(cod >> 8); in uint2devclass() 77 dev_class[0] = (uint8_t)(cod >> 16); in uint2devclass()
|
D | btif_core.cc | 691 DEV_CLASS dev_class; in btif_set_adapter_property() local 692 memcpy(dev_class, property->val, DEV_CLASS_LEN); in btif_set_adapter_property() 694 BTIF_TRACE_EVENT("set property dev_class : 0x%02x%02x%02x", dev_class[0], in btif_set_adapter_property() 695 dev_class[1], dev_class[2]); in btif_set_adapter_property() 697 BTM_SetDeviceClass(dev_class); in btif_set_adapter_property()
|
/system/bt/stack/btm/ |
D | btm_ble_gap.cc | 1460 static void btm_ble_appearance_to_cod(uint16_t appearance, uint8_t* dev_class) { in btm_ble_appearance_to_cod() argument 1461 dev_class[0] = 0; in btm_ble_appearance_to_cod() 1465 dev_class[1] = BTM_COD_MAJOR_PHONE; in btm_ble_appearance_to_cod() 1466 dev_class[2] = BTM_COD_MINOR_UNCLASSIFIED; in btm_ble_appearance_to_cod() 1469 dev_class[1] = BTM_COD_MAJOR_COMPUTER; in btm_ble_appearance_to_cod() 1470 dev_class[2] = BTM_COD_MINOR_UNCLASSIFIED; in btm_ble_appearance_to_cod() 1473 dev_class[1] = BTM_COD_MAJOR_PERIPHERAL; in btm_ble_appearance_to_cod() 1474 dev_class[2] = BTM_COD_MINOR_REMOTE_CONTROL; in btm_ble_appearance_to_cod() 1478 dev_class[1] = BTM_COD_MAJOR_HEALTH; in btm_ble_appearance_to_cod() 1479 dev_class[2] = BTM_COD_MINOR_THERMOMETER; in btm_ble_appearance_to_cod() [all …]
|
D | btm_dev.cc | 63 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTM_SecAddDevice() argument 93 if (dev_class) memcpy(p_dev_rec->dev_class, dev_class, DEV_CLASS_LEN); in BTM_SecAddDevice() 225 memcpy(p_dev_rec->dev_class, p_inq_info->results.dev_class, DEV_CLASS_LEN); in btm_sec_alloc_dev() 230 memcpy(p_dev_rec->dev_class, btm_cb.connecting_dc, DEV_CLASS_LEN); in btm_sec_alloc_dev()
|
D | btm_devctl.cc | 414 tBTM_STATUS BTM_SetDeviceClass(DEV_CLASS dev_class) { in BTM_SetDeviceClass() argument 415 if (!memcmp(btm_cb.devcb.dev_class, dev_class, DEV_CLASS_LEN)) in BTM_SetDeviceClass() 418 memcpy(btm_cb.devcb.dev_class, dev_class, DEV_CLASS_LEN); in BTM_SetDeviceClass() 422 btsnd_hcic_write_dev_class(dev_class); in BTM_SetDeviceClass() 437 return ((uint8_t*)btm_cb.devcb.dev_class); in BTM_ReadDeviceClass()
|
D | btm_dev.h | 42 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class,
|
D | btm_sec.cc | 146 p_dev_rec.bd_addr, static_cast<uint8_t*>(p_dev_rec.dev_class), in NotifyBondingChange() 812 if (((p_dev_rec->dev_class[1] & BTM_COD_MAJOR_CLASS_MASK) == in btm_sec_bond_by_transport() 814 (p_dev_rec->dev_class[2] & BTM_COD_MINOR_KEYBOARD) && in btm_sec_bond_by_transport() 2195 DEV_CLASS dev_class; in btm_sec_rmt_name_request_complete() local 2256 (*btm_cb.p_rmt_name_callback[i])(*p_bd_addr, p_dev_rec->dev_class, in btm_sec_rmt_name_request_complete() 2260 dev_class[0] = 0; in btm_sec_rmt_name_request_complete() 2261 dev_class[1] = 0; in btm_sec_rmt_name_request_complete() 2262 dev_class[2] = 0; in btm_sec_rmt_name_request_complete() 2268 (*btm_cb.p_rmt_name_callback[i])(*p_bd_addr, dev_class, (uint8_t*)""); in btm_sec_rmt_name_request_complete() 2288 p_dev_rec->bd_addr, p_dev_rec->dev_class, p_bd_name, in btm_sec_rmt_name_request_complete() [all …]
|
D | security_device_record.h | 215 DEV_CLASS dev_class; /* DEV_CLASS of the device */ member 223 friend bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, 435 class_of_device_text(dev_class).c_str(), in ToString()
|
D | neighbor_inquiry.h | 102 DEV_CLASS dev_class; member
|
/system/bt/btif/include/ |
D | btif_util.h | 62 uint32_t devclass2uint(DEV_CLASS dev_class); 63 void uint2devclass(uint32_t dev, DEV_CLASS dev_class);
|
/system/bt/bta/sys/ |
D | utl.cc | 164 DEV_CLASS dev_class; in utl_set_device_class() local 206 FIELDS_TO_COD(dev_class, minor, major, service); in utl_set_device_class() 208 if (BTM_SetDeviceClass(dev_class) == BTM_SUCCESS) return true; in utl_set_device_class()
|
/system/bt/bta/include/ |
D | bta_api.h | 228 DEV_CLASS dev_class; /* Class of Device */ member 332 DEV_CLASS dev_class; /* peer CoD */ member 348 DEV_CLASS dev_class; /* peer CoD */ member 359 DEV_CLASS dev_class; /* peer CoD */ member 411 DEV_CLASS dev_class; /* Device class of peer device. */ member 834 extern void BTA_DmAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class,
|
/system/core/fastboot/ |
D | usb.h | 38 unsigned char dev_class; member
|
/system/bt/bta/dm/ |
D | bta_dm_act.cc | 73 static uint8_t bta_dm_pin_cback(const RawAddress& bd_addr, DEV_CLASS dev_class, 76 DEV_CLASS dev_class, BD_NAME bd_name, 79 DEV_CLASS dev_class, 325 DEV_CLASS dev_class; in BTA_dm_on_hw_on() local 356 memcpy(dev_class, p_bta_dm_cfg->dev_class, sizeof(dev_class)); in BTA_dm_on_hw_on() 358 bluetooth::shim::BTM_SetDeviceClass(dev_class); in BTA_dm_on_hw_on() 360 BTM_SetDeviceClass(dev_class); in BTA_dm_on_hw_on() 1815 memcpy(result.inq_res.dev_class, p_inq->dev_class, DEV_CLASS_LEN); in bta_dm_inq_results_cb() 1816 BTM_COD_SERVICE_CLASS(service_class, p_inq->dev_class); in bta_dm_inq_results_cb() 1969 BTA_COPY_DEVICE_CLASS(sec_event.cfm_req.dev_class, bta_dm_cb.pin_dev_class); in bta_dm_pinname_cback() [all …]
|
D | bta_dm_api.cc | 235 void BTA_DmAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTA_DmAddDevice() argument 247 if (dev_class) { in BTA_DmAddDevice() 249 memcpy(msg->dc, dev_class, DEV_CLASS_LEN); in BTA_DmAddDevice()
|
/system/bt/main/shim/ |
D | btm_api.cc | 96 p_i->inq_info.results.dev_class[0] = device_class[0]; in btm_api_process_inquiry_result() 97 p_i->inq_info.results.dev_class[1] = device_class[1]; in btm_api_process_inquiry_result() 98 p_i->inq_info.results.dev_class[2] = device_class[2]; in btm_api_process_inquiry_result() 153 p_i->inq_info.results.dev_class[0] = device_class[0]; in btm_api_process_inquiry_result_with_rssi() 154 p_i->inq_info.results.dev_class[1] = device_class[1]; in btm_api_process_inquiry_result_with_rssi() 155 p_i->inq_info.results.dev_class[2] = device_class[2]; in btm_api_process_inquiry_result_with_rssi() 207 p_i->inq_info.results.dev_class[0] = device_class[0]; in btm_api_process_extended_inquiry_result() 208 p_i->inq_info.results.dev_class[1] = device_class[1]; in btm_api_process_extended_inquiry_result() 209 p_i->inq_info.results.dev_class[2] = device_class[2]; in btm_api_process_extended_inquiry_result() 1250 DEV_CLASS dev_class, BD_NAME bd_name, in BTM_SecAddDevice() argument [all …]
|
/system/bt/test/mock/ |
D | mock_stack_btm_dev.cc | 48 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTM_SecAddDevice() argument
|
D | mock_stack_btm_devctl.cc | 85 tBTM_STATUS BTM_SetDeviceClass(DEV_CLASS dev_class) { in BTM_SetDeviceClass() argument
|
D | mock_stack_btm_sco.cc | 104 void btm_sco_conn_req(const RawAddress& bda, const DEV_CLASS& dev_class, in btm_sco_conn_req() argument
|
D | mock_bta_dm_api.cc | 65 void BTA_DmAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTA_DmAddDevice() argument
|