Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/nimble_host/
Desp_blufi.c345 if (blufi_env.aggr_buf != NULL) { in esp_blufi_gap_event()
346 osi_free(blufi_env.aggr_buf); in esp_blufi_gap_event()
347 blufi_env.aggr_buf = NULL; in esp_blufi_gap_event()
582 if (blufi_env.aggr_buf != NULL) { in esp_blufi_handle_gap_events()
583 osi_free(blufi_env.aggr_buf); in esp_blufi_handle_gap_events()
584 blufi_env.aggr_buf = NULL; in esp_blufi_handle_gap_events()
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/
Dblufi_prf.c144 if (blufi_env.aggr_buf) { in btc_blufi_recv_handler()
150 blufi_env.aggr_buf = osi_malloc(blufi_env.total_len); in btc_blufi_recv_handler()
151 if (blufi_env.aggr_buf == NULL) { in btc_blufi_recv_handler()
158 memcpy(blufi_env.aggr_buf + blufi_env.offset, hdr->data + 2, hdr->data_len - 2); in btc_blufi_recv_handler()
169 if (blufi_env.aggr_buf == NULL) { in btc_blufi_recv_handler()
180 memcpy(blufi_env.aggr_buf + blufi_env.offset, hdr->data, hdr->data_len); in btc_blufi_recv_handler()
182 btc_blufi_protocol_handler(hdr->type, blufi_env.aggr_buf, blufi_env.total_len); in btc_blufi_recv_handler()
184 osi_free(blufi_env.aggr_buf); in btc_blufi_recv_handler()
185 blufi_env.aggr_buf = NULL; in btc_blufi_recv_handler()
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/bluedroid_host/
Desp_blufi.c340 if (blufi_env.aggr_buf != NULL) { in blufi_profile_cb()
341 osi_free(blufi_env.aggr_buf); in blufi_profile_cb()
342 blufi_env.aggr_buf = NULL; in blufi_profile_cb()
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/include/
Dblufi_int.h50 uint8_t *aggr_buf; member