Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/include/
Dbta_gattc_int.h424 }tBTA_GATTC_CB; typedef
442 extern tBTA_GATTC_CB bta_gattc_cb;
444 extern tBTA_GATTC_CB *bta_gattc_cb_ptr;
455 extern void bta_gattc_disable(tBTA_GATTC_CB *p_cb);
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);
460 extern void bta_gattc_deregister(tBTA_GATTC_CB *p_cb, tBTA_GATTC_RCB *p_clreg);
461 extern void bta_gattc_process_enc_cmpl(tBTA_GATTC_CB *p_cb, tBTA_GATTC_DATA *p_msg);
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_main.c256 tBTA_GATTC_CB bta_gattc_cb;
258 tBTA_GATTC_CB *bta_gattc_cb_ptr;
339 tBTA_GATTC_CB *p_cb = &bta_gattc_cb; in bta_gattc_hdl_event()
533 memset(bta_gattc_cb_ptr, 0, sizeof(tBTA_GATTC_CB)); in bta_gattc_deinit()
Dbta_gattc_act.c124 static void bta_gattc_enable(tBTA_GATTC_CB *p_cb) in bta_gattc_enable()
133 memset(&bta_gattc_cb, 0, sizeof(tBTA_GATTC_CB)); in bta_gattc_enable()
152 void bta_gattc_disable(tBTA_GATTC_CB *p_cb) in bta_gattc_disable()
181 memset(p_cb, 0, sizeof(tBTA_GATTC_CB)); in bta_gattc_disable()
194 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()
284 void bta_gattc_deregister(tBTA_GATTC_CB *p_cb, tBTA_GATTC_RCB *p_clreg) 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()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/main/
Dbte_init.c481 if ((bta_gattc_cb_ptr = (tBTA_GATTC_CB *)osi_malloc(sizeof(tBTA_GATTC_CB))) == NULL) { in BTE_InitStack()
484 memset((void *)bta_gattc_cb_ptr, 0, sizeof(tBTA_GATTC_CB)); in BTE_InitStack()