Home
last modified time | relevance | path

Searched refs:results (Results 1 – 20 of 20) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/
Dbtm_devctl.c1085 tBTM_SET_AFH_CHANNELS_RESULTS results; in btm_set_afh_channels_complete() local
1093 STREAM_TO_UINT8 (results.hci_status, p); in btm_set_afh_channels_complete()
1095 switch (results.hci_status){ in btm_set_afh_channels_complete()
1097 results.status = BTM_SUCCESS; in btm_set_afh_channels_complete()
1101 results.status = BTM_ILLEGAL_VALUE; in btm_set_afh_channels_complete()
1104 results.status = BTM_ERR_PROCESSING; in btm_set_afh_channels_complete()
1107 (*p_cb)(&results); in btm_set_afh_channels_complete()
1158 tBTM_BLE_SET_CHANNELS_RESULTS results; in btm_ble_set_channels_complete() local
1166 STREAM_TO_UINT8 (results.hci_status, p); in btm_ble_set_channels_complete()
1168 switch (results.hci_status){ in btm_ble_set_channels_complete()
[all …]
Dbtm_acl.c2163 tBTM_SET_ACL_PKT_TYPES_RESULTS results; in btm_acl_pkt_types_changed() local
2169 results.status = BTM_SUCCESS; in btm_acl_pkt_types_changed()
2171 results.status = BTM_BAD_VALUE_RET; in btm_acl_pkt_types_changed()
2173 results.pkt_types = pkt_types; in btm_acl_pkt_types_changed()
2176 memcpy(results.rem_bda, conn->remote_addr, BD_ADDR_LEN); in btm_acl_pkt_types_changed()
2177 (*btm_cb.devcb.p_set_acl_pkt_types_cmpl_cb)(&results); in btm_acl_pkt_types_changed()
2236 tBTM_TX_POWER_RESULTS results; in btm_read_tx_power_complete() local
2246 STREAM_TO_UINT8 (results.hci_status, p); in btm_read_tx_power_complete()
2248 if (results.hci_status == HCI_SUCCESS) { in btm_read_tx_power_complete()
2249 results.status = BTM_SUCCESS; in btm_read_tx_power_complete()
[all …]
Dbtm_inq.c1426 (!memcmp (p_ent->inq_info.results.remote_bd_addr, p_bda, BD_ADDR_LEN))) { in btm_clr_inq_db()
1514 … if ((p_ent->in_use) && (!memcmp (p_ent->inq_info.results.remote_bd_addr, p_bda, BD_ADDR_LEN))) { in btm_inq_db_find()
1544 memcpy (p_ent->inq_info.results.remote_bd_addr, p_bda, BD_ADDR_LEN); in btm_inq_db_new()
1559 memcpy (p_old->inq_info.results.remote_bd_addr, p_bda, BD_ADDR_LEN); in btm_inq_db_new()
1863 (p_i && (p_i->inq_info.results.device_type & BT_DEVICE_TYPE_BREDR) != 0) in btm_process_inq_results()
1881 p_i && (i_rssi > p_i->inq_info.results.rssi || p_i->inq_info.results.rssi == 0 in btm_process_inq_results()
1884 || (p_i->inq_info.results.device_type & BT_DEVICE_TYPE_BREDR) != 0 in btm_process_inq_results()
1887 p_cur = &p_i->inq_info.results; in btm_process_inq_results()
1895 p_cur = &p_i->inq_info.results; in btm_process_inq_results()
1916 && (p_i->inq_info.results.device_type == BT_DEVICE_TYPE_BREDR) in btm_process_inq_results()
[all …]
Dbtm_ble_gap.c2884 p_cur->results.ble_evt_type != BTM_BLE_EVT_CONN_ADV && in btm_ble_read_remote_name()
2885 p_cur->results.ble_evt_type != BTM_BLE_EVT_CONN_DIR_ADV) { in btm_ble_read_remote_name()
3340 tBTM_INQ_RESULTS *p_cur = &p_i->inq_info.results; in btm_ble_update_inq_result()
3462 (p_ent->inq_info.results.device_type == BT_DEVICE_TYPE_BLE) && in btm_clear_all_pending_le_entry()
3665 …if ((result = btm_ble_is_discoverable(p_le_inq_cb->adv_addr, p_i->inq_info.results.ble_evt_type, N… in btm_ble_process_last_adv_pkt()
3675 … (p_inq_results_cb)((tBTM_INQ_RESULTS *) &p_i->inq_info.results, p_le_inq_cb->adv_data_cache); in btm_ble_process_last_adv_pkt()
3678 p_i->inq_info.results.adv_data_len = 0; in btm_ble_process_last_adv_pkt()
3679 p_i->inq_info.results.scan_rsp_len = 0; in btm_ble_process_last_adv_pkt()
3682 … (p_obs_results_cb)((tBTM_INQ_RESULTS *) &p_i->inq_info.results, p_le_inq_cb->adv_data_cache); in btm_ble_process_last_adv_pkt()
3685 p_i->inq_info.results.adv_data_len = 0; in btm_ble_process_last_adv_pkt()
[all …]
Dbtm_dev.c390 memcpy (p_dev_rec->dev_class, p_inq_info->results.dev_class, DEV_CLASS_LEN); in btm_sec_alloc_dev()
393 p_dev_rec->device_type = p_inq_info->results.device_type; in btm_sec_alloc_dev()
394 p_dev_rec->ble.ble_addr_type = p_inq_info->results.ble_addr_type; in btm_sec_alloc_dev()
Dbtm_ble.c132 p_info->results.ble_addr_type = p_dev_rec->ble.ble_addr_type ; in BTM_SecAddBleDevice()
133 p_info->results.device_type = p_dev_rec->device_type; in BTM_SecAddBleDevice()
135 p_info->results.device_type, p_info->results.ble_addr_type); in BTM_SecAddBleDevice()
687 *p_dev_type = p_inq_info->results.device_type ; in BTM_ReadDevInfo()
688 *p_addr_type = p_inq_info->results.ble_addr_type; in BTM_ReadDevInfo()
700 p_dev_rec->device_type = p_inq_info->results.device_type; in BTM_ReadDevInfo()
701 p_dev_rec->ble.ble_addr_type = p_inq_info->results.ble_addr_type; in BTM_ReadDevInfo()
Dbtm_sec.c5167 p_inq_info->results.clock_offset = clock_offset | BTM_CLOCK_OFFSET_VALID; in btm_sec_update_clock_offset()
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/include/
Dgap_int.h42 tGAP_FINDADDR_RESULTS results; member
/hal_espressif-latest/components/esp_hw_support/port/esp32s2/
DKconfig.rtc18 - "Internal 8MHz oscillator divided by 256" option results in higher
/hal_espressif-latest/components/esp_hw_support/port/esp32/
DKconfig.rtc20 - "Internal 8.5MHz oscillator divided by 256" option results in higher
/hal_espressif-latest/components/bt/host/bluedroid/stack/hid/
Dhidh_api.c627 if ((p_inq_info->results.dev_class[1] & BTM_COD_MAJOR_CLASS_MASK) in hid_known_hid_device()
/hal_espressif-latest/components/esp_wifi/
DKconfig542 bool "Keep scan results in cache"
546 Keep scan results in cache, if not enabled, those
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2c_utils.c2399 page_scan_rep_mode = p_inq_info->results.page_scan_rep_mode; in l2cu_create_conn_after_switch()
2400 page_scan_mode = p_inq_info->results.page_scan_mode; in l2cu_create_conn_after_switch()
2401 clock_offset = (UINT16)(p_inq_info->results.clock_offset); in l2cu_create_conn_after_switch()
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/
Dbta_dm_act.c1872 bta_dm_discover_device(bta_dm_search_cb.p_btm_inq_info->results.remote_bd_addr); in bta_dm_inq_cmpl()
2571 bta_dm_discover_device(bta_dm_search_cb.p_btm_inq_info->results.remote_bd_addr); in bta_dm_discover_next_device()
2637 && (bta_dm_search_cb.p_btm_inq_info->results.device_type == BT_DEVICE_TYPE_BLE) in bta_dm_discover_device()
2668 bta_dm_eir_search_services( &bta_dm_search_cb.p_btm_inq_info->results, in bta_dm_discover_device()
2689 bta_dm_search_cb.p_btm_inq_info->results.device_type, in bta_dm_discover_device()
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/documentation/
Dtinycrypt.rst289 the correctness of the implementations by checking the results against
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dboot-mode-selection.rst151 …RAP_BOOT_GPIO}`` pins, but don't add a capacitor on the ``EN`` pin. This results in unreliable aut…
Dserial-protocol.rst37 Each command is a SLIP packet initiated by the host and results in a response packet. Inside the pa…
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dbtm_api.h673 tBTM_INQ_RESULTS results; member
/hal_espressif-latest/components/newlib/
DCOPYING.NEWLIB470 representations regarding the use of, or the results of the use of,
473 documentation and results solely at your own risk.
/hal_espressif-latest/components/mbedtls/
DKconfig436 and modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.