Home
last modified time | relevance | path

Searched refs:tBTA_GATTC_DATA (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/include/
Dbta_gattc_int.h284 } tBTA_GATTC_DATA; typedef
368 tBTA_GATTC_DATA *p_q_cmd; /* command in queue waiting for execution */
452 extern BOOLEAN bta_gattc_sm_execute(tBTA_GATTC_CLCB *p_clcb, UINT16 event, tBTA_GATTC_DATA *p_data);
456 extern void bta_gattc_register(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_data);
457 extern void bta_gattc_start_if(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_data);
458 extern void bta_gattc_process_api_open (tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg);
459 extern void bta_gattc_process_api_open_cancel (tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg);
461 extern void bta_gattc_process_enc_cmpl(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg);
464 extern void bta_gattc_open(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data);
465 extern void bta_gattc_open_fail(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data);
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_main.c74 typedef void (*tBTA_GATTC_ACTION)(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data);
277 BOOLEAN bta_gattc_sm_execute(tBTA_GATTC_CLCB *p_clcb, UINT16 event, tBTA_GATTC_DATA *p_data) in bta_gattc_sm_execute()
352 bta_gattc_register(p_cb, (tBTA_GATTC_DATA *) p_msg); in bta_gattc_hdl_event()
356 bta_gattc_start_if(p_cb, (tBTA_GATTC_DATA *) p_msg); in bta_gattc_hdl_event()
360 p_clreg = bta_gattc_cl_get_regcb(((tBTA_GATTC_DATA *)p_msg)->api_dereg.client_if); in bta_gattc_hdl_event()
365 bta_gattc_process_api_open(p_cb, (tBTA_GATTC_DATA *) p_msg); in bta_gattc_hdl_event()
369 bta_gattc_process_api_open_cancel(p_cb, (tBTA_GATTC_DATA *) p_msg); in bta_gattc_hdl_event()
373 bta_gattc_process_api_refresh(p_cb, (tBTA_GATTC_DATA *) p_msg); in bta_gattc_hdl_event()
376 bta_gattc_process_api_cache_assoc(p_cb, (tBTA_GATTC_DATA *)p_msg); in bta_gattc_hdl_event()
379 bta_gattc_process_api_cache_get_addr_list(p_cb, (tBTA_GATTC_DATA *)p_msg); in bta_gattc_hdl_event()
[all …]
Dbta_gattc_act.c194 void bta_gattc_register(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_data) in bta_gattc_register()
264 void bta_gattc_start_if(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg) in bta_gattc_start_if()
311 bta_gattc_close(&p_cb->clcb[i], (tBTA_GATTC_DATA *)&buf) ; in bta_gattc_deregister()
333 void bta_gattc_process_api_open (tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg) in bta_gattc_process_api_open()
376 void bta_gattc_process_api_open_cancel (tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg) in bta_gattc_process_api_open_cancel()
414 void bta_gattc_process_enc_cmpl(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg) in bta_gattc_process_enc_cmpl()
441 void bta_gattc_cancel_open_error(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data) in bta_gattc_cancel_open_error()
462 void bta_gattc_open_error(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data) in bta_gattc_open_error()
484 void bta_gattc_open_fail(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data) in bta_gattc_open_fail()
507 void bta_gattc_open(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data) in bta_gattc_open()
[all …]
Dbta_gattc_utils.c459 tBTA_GATTC_DATA *cmd_data = (tBTA_GATTC_DATA *)list_node(sn); in bta_gattc_has_prepare_command_in_queue()
478 BOOLEAN bta_gattc_enqueue(tBTA_GATTC_CLCB *p_clcb, tBTA_GATTC_DATA *p_data) in bta_gattc_enqueue()
503 tBTA_GATTC_DATA *cmd_data = NULL; in bta_gattc_enqueue()
520 if ((cmd_data = (tBTA_GATTC_DATA *)osi_malloc(sizeof(tBTA_GATTC_DATA) + len)) != NULL) { in bta_gattc_enqueue()
521 memset(cmd_data, 0, sizeof(tBTA_GATTC_DATA) + len); in bta_gattc_enqueue()
522 memcpy(cmd_data, p_data, sizeof(tBTA_GATTC_DATA)); in bta_gattc_enqueue()
530 if ((cmd_data = (tBTA_GATTC_DATA *)osi_malloc(sizeof(tBTA_GATTC_DATA))) != NULL) { in bta_gattc_enqueue()
531 memset(cmd_data, 0, sizeof(tBTA_GATTC_DATA)); in bta_gattc_enqueue()
532 memcpy(cmd_data, p_data, sizeof(tBTA_GATTC_DATA)); in bta_gattc_enqueue()
933 tBTA_GATTC_CLCB *bta_gattc_find_int_conn_clcb(tBTA_GATTC_DATA *p_msg) in bta_gattc_find_int_conn_clcb()
[all …]