Home
last modified time | relevance | path

Searched defs:handle (Results 1 – 25 of 224) sorted by relevance

123456789

/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/storage/
Dsettings_nvs.c25 bt_mesh_nvs_handle_t handle; member
63 int bt_mesh_settings_nvs_open(const char* name, bt_mesh_nvs_handle_t *handle) in bt_mesh_settings_nvs_open()
72 void bt_mesh_settings_nvs_close(bt_mesh_nvs_handle_t handle) in bt_mesh_settings_nvs_close()
159 int bt_mesh_settings_direct_open(bt_mesh_nvs_handle_t *handle) in bt_mesh_settings_direct_open()
217 static int settings_save(bt_mesh_nvs_handle_t handle, const char *key, const uint8_t *val, size_t l… in settings_save()
252 int bt_mesh_save_settings(bt_mesh_nvs_handle_t handle, const char *key, in bt_mesh_save_settings()
264 bt_mesh_nvs_handle_t handle = settings_get_nvs_handle(SETTINGS_CORE); in bt_mesh_save_core_settings() local
271 bt_mesh_nvs_handle_t handle = settings_get_nvs_handle(SETTINGS_UID); in bt_mesh_save_uid_settings() local
276 int bt_mesh_erase_settings(bt_mesh_nvs_handle_t handle, const char *key) in bt_mesh_erase_settings()
295 static int settings_load(bt_mesh_nvs_handle_t handle, const char *key, in settings_load()
[all …]
/hal_espressif-3.6.0/examples/peripherals/rmt/step_motor/components/step_motor/src/
Dstep_motor_driver_io_a4988.c19 static esp_err_t a4988_init(step_motor_driver_io_t *handle) in a4988_init()
52 static esp_err_t a4988_set_direction(step_motor_driver_io_t *handle, step_direction direction) in a4988_set_direction()
59 static esp_err_t a4988_enable_sleep(step_motor_driver_io_t *handle, bool enabled) in a4988_enable_sleep()
66 static esp_err_t a4988_enable_output(step_motor_driver_io_t *handle, bool enabled) in a4988_enable_output()
73 static esp_err_t a4988_set_microstep(step_motor_driver_io_t *handle, uint16_t microstep) in a4988_set_microstep()
108 static esp_err_t a4988_reset(step_motor_driver_io_t *handle) in a4988_reset()
117 static esp_err_t a4988_deinit(step_motor_driver_io_t *handle) in a4988_deinit()
136 …_new_a4988_io_driver(const step_motor_io_a4988_conf_t *conf, step_motor_driver_io_handle_t *handle) in step_motor_new_a4988_io_driver()
168 esp_err_t step_motor_delete_a4988_io_driver(step_motor_driver_io_handle_t handle) in step_motor_delete_a4988_io_driver()
Dstep_motor.c9 esp_err_t step_motor_init(step_motor_t *handle) in step_motor_init()
14 esp_err_t step_motor_deinit(step_motor_t *handle) in step_motor_deinit()
19 esp_err_t step_motor_step(step_motor_t *handle, uint32_t n, uint32_t speed) in step_motor_step()
24 esp_err_t step_motor_smooth_step(step_motor_t *handle, uint32_t n, uint32_t speed_steps, uint32_t s… in step_motor_smooth_step()
29 esp_err_t step_motor_set_step(step_motor_t *handle, uint16_t microstep, bool direction) in step_motor_set_step()
/hal_espressif-3.6.0/components/esp_serial_slave_link/
Dessl.c53 esp_err_t essl_init(essl_handle_t handle, uint32_t wait_ms) in essl_init()
58 esp_err_t essl_wait_for_ready(essl_handle_t handle, uint32_t wait_ms) in essl_wait_for_ready()
63 esp_err_t essl_send_packet(essl_handle_t handle, const void *start, size_t length, uint32_t wait_ms) in essl_send_packet()
92 esp_err_t essl_get_packet(essl_handle_t handle, void *out_data, size_t size, size_t *out_length, ui… in essl_get_packet()
148 esp_err_t essl_get_tx_buffer_num(essl_handle_t handle, uint32_t *out_tx_num, uint32_t wait_ms) in essl_get_tx_buffer_num()
166 esp_err_t essl_get_rx_data_size(essl_handle_t handle, uint32_t *out_rx_size, uint32_t wait_ms) in essl_get_rx_data_size()
184 esp_err_t essl_write_reg(essl_handle_t handle, uint8_t addr, uint8_t value, uint8_t *value_o, uint3… in essl_write_reg()
189 esp_err_t essl_read_reg(essl_handle_t handle, uint8_t add, uint8_t *value_o, uint32_t wait_ms) in essl_read_reg()
194 esp_err_t essl_wait_int(essl_handle_t handle, TickType_t wait_ms) in essl_wait_int()
199 esp_err_t essl_reset_cnt(essl_handle_t handle) in essl_reset_cnt()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/rfcomm/
Dport_api.c231 int RFCOMM_RemoveConnection (UINT16 handle) in RFCOMM_RemoveConnection()
265 int RFCOMM_RemoveServer (UINT16 handle) in RFCOMM_RemoveServer()
472 int PORT_CheckConnection(UINT16 handle, BOOLEAN ignore_rfc_state, BD_ADDR bd_addr, UINT16 *p_lcid) in PORT_CheckConnection()
565 int PORT_SetState (UINT16 handle, tPORT_STATE *p_settings) in PORT_SetState()
610 int PORT_GetRxQueueCnt (UINT16 handle, UINT16 *p_rx_queue_count) in PORT_GetRxQueueCnt()
651 int PORT_GetState (UINT16 handle, tPORT_STATE *p_settings) in PORT_GetState()
688 int PORT_Control (UINT16 handle, UINT8 signal) in PORT_Control()
773 int PORT_FlowControl (UINT16 handle, BOOLEAN enable) in PORT_FlowControl()
913 int PORT_FlowControl_GiveCredit (UINT16 handle, BOOLEAN enable, UINT16 credits_given) in PORT_FlowControl_GiveCredit()
986 int PORT_GetModemStatus (UINT16 handle, UINT8 *p_signal) in PORT_GetModemStatus()
[all …]
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/
Dtest_nvs_cxx_api.cpp34 shared_ptr<nvs::NVSHandle> handle; variable
54 shared_ptr<nvs::NVSHandle> handle; variable
68 shared_ptr<nvs::NVSHandle> handle; variable
94 shared_ptr<nvs::NVSHandle> handle; variable
120 shared_ptr<nvs::NVSHandle> handle; variable
143 shared_ptr<nvs::NVSHandle> handle; variable
173 shared_ptr<nvs::NVSHandle> handle; variable
Dtest_nvs_handle.cpp41 NVSHandleSimple *handle; variable
137 NVSHandleSimple *handle; variable
169 NVSHandleSimple *handle; variable
202 NVSHandleSimple *handle; variable
234 NVSHandleSimple *handle; variable
267 NVSHandleSimple *handle; variable
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/hf_ag/
Dbta_ag_api.c145 void BTA_AgDeregister(UINT16 handle) in BTA_AgDeregister()
168 void BTA_AgOpen(UINT16 handle, BD_ADDR bd_addr, tBTA_SEC sec_mask, tBTA_SERVICE_MASK services) in BTA_AgOpen()
193 void BTA_AgClose(UINT16 handle) in BTA_AgClose()
215 void BTA_AgAudioOpen(UINT16 handle) in BTA_AgAudioOpen()
237 void BTA_AgAudioClose(UINT16 handle) in BTA_AgAudioClose()
261 void BTA_AgResult(UINT16 handle, tBTA_AG_RES result, tBTA_AG_RES_DATA *p_data) in BTA_AgResult()
288 void BTA_AgSetCodec(UINT16 handle, tBTA_AG_PEER_CODEC codec) in BTA_AgSetCodec()
310 void BTA_AgCiData(UINT16 handle) in BTA_AgCiData()
Dbta_ag_rfc.c93 static void bta_ag_port_cback(UINT32 code, UINT16 port_handle, UINT16 handle) in bta_ag_port_cback()
125 static void bta_ag_mgmt_cback(UINT32 code, UINT16 port_handle, UINT16 handle) in bta_ag_mgmt_cback()
187 static int bta_ag_data_cback(UINT16 port_handle, void *p_data, UINT16 len, UINT16 handle) in bta_ag_data_cback()
210 void bta_ag_mgmt_cback_1(UINT32 code, UINT16 handle, void* data) {bta_ag_mgmt_cback(code, handle, 1… in bta_ag_mgmt_cback_1()
211 void bta_ag_mgmt_cback_2(UINT32 code, UINT16 handle, void* data) {bta_ag_mgmt_cback(code, handle, 2… in bta_ag_mgmt_cback_2()
212 void bta_ag_mgmt_cback_3(UINT32 code, UINT16 handle, void* data) {bta_ag_mgmt_cback(code, handle, 3… in bta_ag_mgmt_cback_3()
213 void bta_ag_port_cback_1(UINT32 code, UINT16 handle) {bta_ag_port_cback(code, handle, 1);} in bta_ag_port_cback_1()
214 void bta_ag_port_cback_2(UINT32 code, UINT16 handle) {bta_ag_port_cback(code, handle, 2);} in bta_ag_port_cback_2()
215 void bta_ag_port_cback_3(UINT32 code, UINT16 handle) {bta_ag_port_cback(code, handle, 3);} in bta_ag_port_cback_3()
251 void bta_ag_setup_port(tBTA_AG_SCB *p_scb, UINT16 handle) in bta_ag_setup_port()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/example_nvs/
Dble_mesh_example_nvs.c19 esp_err_t ble_mesh_nvs_open(nvs_handle_t *handle) in ble_mesh_nvs_open()
38 esp_err_t ble_mesh_nvs_store(nvs_handle_t handle, const char *key, const void *data, size_t length) in ble_mesh_nvs_store()
64 esp_err_t ble_mesh_nvs_get_length(nvs_handle_t handle, const char *key, size_t *length) in ble_mesh_nvs_get_length()
89 esp_err_t ble_mesh_nvs_restore(nvs_handle_t handle, const char *key, void *data, size_t length, boo… in ble_mesh_nvs_restore()
121 esp_err_t ble_mesh_nvs_erase(nvs_handle_t handle, const char *key) in ble_mesh_nvs_erase()
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/hf_client/
Dbta_hf_client_api.c163 void BTA_HfClientDeregister(UINT16 handle) in BTA_HfClientDeregister()
187 void BTA_HfClientOpen(UINT16 handle, BD_ADDR bd_addr, tBTA_SEC sec_mask) in BTA_HfClientOpen()
211 void BTA_HfClientClose(UINT16 handle) in BTA_HfClientClose()
233 void BTA_HfClientAudioOpen(UINT16 handle) in BTA_HfClientAudioOpen()
255 void BTA_HfClientAudioClose(UINT16 handle) in BTA_HfClientAudioClose()
276 void BTA_HfClientSendAT(UINT16 handle, tBTA_HF_CLIENT_AT_CMD_TYPE at, UINT32 val1, UINT32 val2, con… in BTA_HfClientSendAT()
/hal_espressif-3.6.0/components/wear_levelling/
Dwear_levelling.cpp171 esp_err_t wl_unmount(wl_handle_t handle) in wl_unmount()
192 esp_err_t wl_erase_range(wl_handle_t handle, size_t start_addr, size_t size) in wl_erase_range()
204 esp_err_t wl_write(wl_handle_t handle, size_t dest_addr, const void *src, size_t size) in wl_write()
216 esp_err_t wl_read(wl_handle_t handle, size_t src_addr, void *dest, size_t size) in wl_read()
228 size_t wl_size(wl_handle_t handle) in wl_size()
240 size_t wl_sector_size(wl_handle_t handle) in wl_sector_size()
252 static esp_err_t check_handle(wl_handle_t handle, const char *func) in check_handle()
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/avdt/
Davdt_api.c220 void AVDT_AbortReq(UINT8 handle) in AVDT_AbortReq()
278 UINT16 AVDT_RemoveStream(UINT8 handle) in AVDT_RemoveStream()
472 UINT16 AVDT_DelayReport(UINT8 handle, UINT8 seid, UINT16 delay) in AVDT_DelayReport()
505 UINT16 AVDT_OpenReq(UINT8 handle, BD_ADDR bd_addr, UINT8 seid, tAVDT_CFG *p_cfg) in AVDT_OpenReq()
551 UINT16 AVDT_ConfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category) in AVDT_ConfigRsp()
692 UINT16 AVDT_CloseReq(UINT8 handle) in AVDT_CloseReq()
725 UINT16 AVDT_ReconfigReq(UINT8 handle, tAVDT_CFG *p_cfg) in AVDT_ReconfigReq()
758 UINT16 AVDT_ReconfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category) in AVDT_ReconfigRsp()
793 UINT16 AVDT_SecurityReq(UINT8 handle, UINT8 *p_data, UINT16 len) in AVDT_SecurityReq()
826 UINT16 AVDT_SecurityRsp(UINT8 handle, UINT8 label, UINT8 error_code, in AVDT_SecurityRsp()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/sdp/
Dsdp_db.c170 tSDP_RECORD *sdp_db_find_record (UINT32 handle) in sdp_db_find_record()
288 UINT32 handle; in SDP_CreateRecord() local
348 BOOLEAN SDP_DeleteRecord (UINT32 handle) in SDP_DeleteRecord()
404 BOOLEAN SDP_AddAttribute (UINT32 handle, UINT16 attr_id, UINT8 attr_type, in SDP_AddAttribute()
524 BOOLEAN SDP_AddSequence (UINT32 handle, UINT16 attr_id, UINT16 num_elem, in SDP_AddSequence()
602 BOOLEAN SDP_AddUuidSequence (UINT32 handle, UINT16 attr_id, UINT16 num_uuids, in SDP_AddUuidSequence()
649 BOOLEAN SDP_AddProtocolList (UINT32 handle, UINT16 num_elem, in SDP_AddProtocolList()
684 BOOLEAN SDP_AddAdditionProtoLists (UINT32 handle, UINT16 num_elem, in SDP_AddAdditionProtoLists()
734 BOOLEAN SDP_AddProfileDescriptorList (UINT32 handle, UINT16 profile_uuid, in SDP_AddProfileDescriptorList()
782 BOOLEAN SDP_AddLanguageBaseAttrIDList (UINT32 handle, UINT16 lang, in SDP_AddLanguageBaseAttrIDList()
[all …]
/hal_espressif-3.6.0/examples/peripherals/sdio/host/main/
Dapp_main.c99 esp_err_t slave_reset(essl_handle_t handle) in slave_reset()
162 esp_err_t slave_init(essl_handle_t* handle) in slave_init()
296 static esp_err_t get_intr(essl_handle_t handle, uint32_t* out_raw, uint32_t* out_st) in get_intr()
315 esp_err_t process_event(essl_handle_t handle) in process_event()
355 static inline esp_err_t slave_inform_job(essl_handle_t handle, example_job_t job) in slave_inform_job()
366 void job_write_reg(essl_handle_t handle, int value) in job_write_reg()
395 void job_fifo(essl_handle_t handle) in job_fifo()
425 void job_getint(essl_handle_t handle) in job_getint()
433 essl_handle_t handle; in app_main() local
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/avct/
Davct_api.c194 UINT16 AVCT_RemoveConn(UINT8 handle) in AVCT_RemoveConn()
232 UINT16 AVCT_CreateBrowse (UINT8 handle, UINT8 role) in AVCT_CreateBrowse()
297 UINT16 AVCT_RemoveBrowse (UINT8 handle) in AVCT_RemoveBrowse()
330 UINT16 AVCT_GetBrowseMtu (UINT8 handle) in AVCT_GetBrowseMtu()
355 UINT16 AVCT_GetPeerMtu (UINT8 handle) in AVCT_GetPeerMtu()
391 UINT16 AVCT_MsgReq(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR *p_msg) in AVCT_MsgReq()
/hal_espressif-3.6.0/components/nvs_flash/src/
Dnvs_api.cpp34 NVSHandleEntry(nvs::NVSHandleSimple *handle, const char* part_name) in NVSHandleEntry()
267 static esp_err_t nvs_find_ns_handle(nvs_handle_t c_handle, NVSHandleSimple** handle) in nvs_find_ns_handle()
284 NVSHandleSimple *handle; in nvs_open_from_partition() local
305 extern "C" void nvs_close(nvs_handle_t handle) in nvs_close()
323 NVSHandleSimple *handle; in nvs_erase_key() local
336 NVSHandleSimple *handle; in nvs_erase_all() local
350 NVSHandleSimple *handle; in nvs_set() local
359 extern "C" esp_err_t nvs_set_i8 (nvs_handle_t handle, const char* key, int8_t value) in nvs_set_i8()
364 extern "C" esp_err_t nvs_set_u8 (nvs_handle_t handle, const char* key, uint8_t value) in nvs_set_u8()
369 extern "C" esp_err_t nvs_set_i16 (nvs_handle_t handle, const char* key, int16_t value) in nvs_set_i16()
[all …]
/hal_espressif-3.6.0/components/wear_levelling/test/
Dtest_wl.c25 wl_handle_t handle; variable
46 wl_handle_t handle; variable
90 wl_handle_t handle; member
137 wl_handle_t handle; variable
192 static void check_mem_data(wl_handle_t handle, uint32_t init_val, uint32_t* buff) in check_mem_data()
218 wl_handle_t handle; variable
295 wl_handle_t handle; variable
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/avrc/
Davrc_api.c77 static void avrc_ctrl_cback(UINT8 handle, UINT8 event, UINT16 result, in avrc_ctrl_cback()
147 static void avrc_prep_end_frag(UINT8 handle) in avrc_prep_end_frag()
187 static void avrc_send_continue_frag(UINT8 handle, UINT8 label) in avrc_send_continue_frag()
254 static BT_HDR *avrc_proc_vendor_command(UINT8 handle, UINT8 label, in avrc_proc_vendor_command()
354 static UINT8 avrc_proc_far_msg(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR **pp_pkt, in avrc_proc_far_msg()
510 static void avrc_msg_cback(UINT8 handle, UINT8 label, UINT8 cr, in avrc_msg_cback()
904 UINT16 AVRC_Close(UINT8 handle) in AVRC_Close()
927 UINT16 AVRC_MsgReq (UINT8 handle, UINT8 label, UINT8 ctype, BT_HDR *p_pkt) in AVRC_MsgReq()
1054 UINT16 AVRC_PassCmd(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg) in AVRC_PassCmd()
1093 UINT16 AVRC_PassRsp(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg) in AVRC_PassRsp()
Davrc_opt.c100 UINT16 AVRC_UnitCmd(UINT8 handle, UINT8 label) in AVRC_UnitCmd()
144 UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page) in AVRC_SubCmd()
187 UINT16 AVRC_VendorCmd(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorCmd()
223 UINT16 AVRC_VendorRsp(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorRsp()
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/hcic/
Dhcicmds.c174 BOOLEAN btsnd_hcic_disconnect (UINT16 handle, UINT8 reason) in btsnd_hcic_disconnect()
198 BOOLEAN btsnd_hcic_add_SCO_conn (UINT16 handle, UINT16 packet_types) in btsnd_hcic_add_SCO_conn()
402 BOOLEAN btsnd_hcic_change_conn_type (UINT16 handle, UINT16 packet_types) in btsnd_hcic_change_conn_type()
426 BOOLEAN btsnd_hcic_auth_request (UINT16 handle) in btsnd_hcic_auth_request()
449 BOOLEAN btsnd_hcic_set_conn_encrypt (UINT16 handle, BOOLEAN enable) in btsnd_hcic_set_conn_encrypt()
524 BOOLEAN btsnd_hcic_rmt_features_req (UINT16 handle) in btsnd_hcic_rmt_features_req()
547 BOOLEAN btsnd_hcic_rmt_ext_features (UINT16 handle, UINT8 page_num) in btsnd_hcic_rmt_ext_features()
571 BOOLEAN btsnd_hcic_rmt_ver_req (UINT16 handle) in btsnd_hcic_rmt_ver_req()
594 BOOLEAN btsnd_hcic_read_rmt_clk_offset (UINT16 handle) in btsnd_hcic_read_rmt_clk_offset()
617 BOOLEAN btsnd_hcic_read_lmp_handle (UINT16 handle) in btsnd_hcic_read_lmp_handle()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/core/
Dbtc_sm.c98 void btc_sm_shutdown(btc_sm_handle_t handle) in btc_sm_shutdown()
118 btc_sm_state_t btc_sm_get_state(btc_sm_handle_t handle) in btc_sm_get_state()
141 bt_status_t btc_sm_dispatch(btc_sm_handle_t handle, btc_sm_event_t event, in btc_sm_dispatch()
173 bt_status_t btc_sm_change_state(btc_sm_handle_t handle, btc_sm_state_t state) in btc_sm_change_state()
/hal_espressif-3.6.0/components/esp_https_ota/src/
Desp_https_ota.c166 esp_err_t esp_https_ota_begin(esp_https_ota_config_t *ota_config, esp_https_ota_handle_t *handle) in esp_https_ota_begin()
289 static esp_err_t read_header(esp_https_ota_t *handle) in read_header()
326 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_get_img_desc() local
354 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_perform() local
466 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_is_complete_data_received() local
477 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_finish() local
516 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_abort() local
550 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_get_image_len_read() local
562 esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; in esp_https_ota_get_image_size() local
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/jv/
Dbta_jv_api.c335 tBTA_JV_STATUS BTA_JvDeleteRecord(UINT32 handle) in BTA_JvDeleteRecord()
470 tBTA_JV_STATUS BTA_JvL2capClose(UINT32 handle) in BTA_JvL2capClose()
500 tBTA_JV_STATUS BTA_JvL2capCloseLE(UINT32 handle) in BTA_JvL2capCloseLE()
691 tBTA_JV_STATUS BTA_JvL2capRead(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvL2capRead()
730 tBTA_JV_STATUS BTA_JvL2capReceive(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvL2capReceive()
774 tBTA_JV_STATUS BTA_JvL2capReady(UINT32 handle, UINT32 *p_data_size) in BTA_JvL2capReady()
803 tBTA_JV_STATUS BTA_JvL2capWrite(UINT32 handle, UINT32 req_id, UINT8 *p_data, in BTA_JvL2capWrite()
916 tBTA_JV_STATUS BTA_JvRfcommClose(UINT32 handle, tBTA_JV_RFCOMM_CBACK *p_cback, void *user_data) in BTA_JvRfcommClose()
997 tBTA_JV_STATUS BTA_JvRfcommStopServer(UINT32 handle, void *user_data) in BTA_JvRfcommStopServer()
1024 tBTA_JV_STATUS BTA_JvRfcommRead(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvRfcommRead()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/btu/
Dbtu_hcif.c621 UINT16 handle; in btu_hcif_connection_comp_evt() local
701 UINT16 handle; in btu_hcif_disconnection_comp_evt() local
741 UINT16 handle; in btu_hcif_authentication_comp_evt() local
789 UINT16 handle; in btu_hcif_encryption_change_evt() local
828 UINT16 handle; in btu_hcif_read_rmt_ext_features_comp_evt() local
867 UINT16 handle; in btu_hcif_qos_setup_comp_evt() local
896 UINT16 handle; in btu_hcif_esco_connection_comp_evt() local
929 UINT16 handle; in btu_hcif_esco_connection_chg_evt() local
1239 UINT16 handle; in btu_hcif_hdl_command_status() local
1544 UINT16 handle; in btu_hcif_mode_change_evt() local
[all …]

123456789