Home
last modified time | relevance | path

Searched refs:dev_class (Results 1 – 25 of 41) sorted by relevance

12

/system/bt/stack/include/
Dsecurity_client_callbacks.h39 DEV_CLASS dev_class, tBTM_BD_NAME bd_name,
48 DEV_CLASS dev_class,
66 DEV_CLASS dev_class,
Dbtm_api_types.h317 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
Dsco_hci_link_interface.h34 extern void btm_sco_conn_req(const RawAddress& bda, const DEV_CLASS& dev_class,
Dbtm_api.h85 tBTM_STATUS BTM_SetDeviceClass(DEV_CLASS dev_class);
632 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class,
Dbtm_client_interface.h118 bool (*BTM_SecAddDevice)(const RawAddress& bd_addr, DEV_CLASS dev_class,
204 tBTM_STATUS (*BTM_SetDeviceClass)(DEV_CLASS dev_class);
/system/bt/btif/src/
Dbtif_util.cc64 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()
Dbtif_core.cc691 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/
Dbtm_ble_gap.cc1460 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 …]
Dbtm_dev.cc63 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()
Dbtm_devctl.cc414 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()
Dbtm_dev.h42 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class,
Dbtm_sec.cc146 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 …]
Dsecurity_device_record.h215 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()
Dneighbor_inquiry.h102 DEV_CLASS dev_class; member
/system/bt/btif/include/
Dbtif_util.h62 uint32_t devclass2uint(DEV_CLASS dev_class);
63 void uint2devclass(uint32_t dev, DEV_CLASS dev_class);
/system/bt/bta/sys/
Dutl.cc164 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/
Dbta_api.h228 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/
Dusb.h38 unsigned char dev_class; member
/system/bt/bta/dm/
Dbta_dm_act.cc73 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 …]
Dbta_dm_api.cc235 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/
Dbtm_api.cc96 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/
Dmock_stack_btm_dev.cc48 bool BTM_SecAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTM_SecAddDevice() argument
Dmock_stack_btm_devctl.cc85 tBTM_STATUS BTM_SetDeviceClass(DEV_CLASS dev_class) { in BTM_SetDeviceClass() argument
Dmock_stack_btm_sco.cc104 void btm_sco_conn_req(const RawAddress& bda, const DEV_CLASS& dev_class, in btm_sco_conn_req() argument
Dmock_bta_dm_api.cc65 void BTA_DmAddDevice(const RawAddress& bd_addr, DEV_CLASS dev_class, in BTA_DmAddDevice() argument

12