/hal_espressif-latest/components/bt/host/bluedroid/stack/avdt/include/ |
D | avdt_defs.h | 148 #define AVDT_MSG_PRS_HDR(p, lbl, pkt, msg) \ argument 150 pkt = (*(p) >> 2) & 0x03; \ 165 #define AVDT_MSG_PRS_PKT_TYPE(p, pkt) \ argument 166 pkt = (*(p) >> 2) & 0x03; 183 #define AVDT_MSG_BLD_HDR(p, lbl, pkt, msg) \ argument 184 *(p)++ = (UINT8) ((lbl) << 4) | ((pkt) << 2) | (msg);
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | slip.c | 36 void SLIP_send(const void *pkt, uint32_t size) { in SLIP_send() argument 38 SLIP_send_frame_data_buf(pkt, size); in SLIP_send() 80 uint32_t SLIP_recv(void *pkt, uint32_t max_len) { in SLIP_recv() argument 83 uint8_t *p = (uint8_t *) pkt; in SLIP_recv()
|
/hal_espressif-latest/components/bt/host/bluedroid/hci/ |
D | hci_hal_h4.c | 562 BT_HDR *pkt = NULL; in host_recv_pkt_cb() local 576 pkt = (BT_HDR *) osi_calloc(pkt_size); in host_recv_pkt_cb() 577 if (!pkt) { in host_recv_pkt_cb() 582 pkt->offset = 0; in host_recv_pkt_cb() 583 pkt->len = len; in host_recv_pkt_cb() 584 pkt->layer_specific = 0; in host_recv_pkt_cb() 585 memcpy(pkt->data, data, len); in host_recv_pkt_cb() 586 fixed_queue_enqueue(hci_hal_env.rx_q, pkt, FIXED_QUEUE_MAX_TIMEOUT); in host_recv_pkt_cb() 607 pkt = (BT_HDR *)linked_pkt->data; in host_recv_pkt_cb() 608 pkt->offset = 0; in host_recv_pkt_cb() [all …]
|
D | hci_layer.c | 235 BT_HDR *pkt = packet_fragmenter->fragment_current_packet(); in hci_downstream_data_handler() local 236 if (pkt != NULL) { in hci_downstream_data_handler() 237 packet_fragmenter->fragment_and_dispatch(pkt); in hci_downstream_data_handler()
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
D | slip.h | 24 void SLIP_send(const void *pkt, uint32_t size); 38 uint32_t SLIP_recv(void *pkt, uint32_t max_len);
|
/hal_espressif-latest/components/bt/common/btc/profile/esp/include/ |
D | btc_blufi_prf.h | 47 uint8_t *pkt; member 102 void btc_blufi_send_notify(uint8_t *pkt, int pkt_len);
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | loader.py | 468 pkt = struct.pack(b"<BBHI", 0x00, op, len(data), chk) + data 469 self.write(pkt) 972 pkt = struct.pack("<I", int(not reboot)) 974 self.check_command("leave Flash mode", self.ESP_FLASH_END, pkt) 1156 pkt = struct.pack("<I", int(not reboot)) 1157 self.check_command("leave compressed flash mode", self.ESP_FLASH_DEFL_END, pkt)
|
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/ |
D | blufi_prf.c | 77 void btc_blufi_send_notify(uint8_t *pkt, int pkt_len) in btc_blufi_send_notify() argument 80 pkts.pkt = pkt; in btc_blufi_send_notify()
|
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/bluedroid_host/ |
D | esp_blufi.c | 370 pkts->pkt, rsp); in esp_blufi_send_notify()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/include/ |
D | btm_ble_int.h | 395 bool btm_ble_adv_pkt_post(pkt_linked_item_t *pkt);
|
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/nimble_host/ |
D | esp_blufi.c | 497 om = ble_hs_mbuf_from_flat(pkts->pkt, pkts->pkt_len); in esp_blufi_send_notify()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/ |
D | btm_ble_gap.c | 4790 bool btm_ble_adv_pkt_post(pkt_linked_item_t *pkt) in btm_ble_adv_pkt_post() argument 4792 if (pkt == NULL) { in btm_ble_adv_pkt_post() 4797 pkt_queue_enqueue(p_cb->adv_rpt_queue, pkt); in btm_ble_adv_pkt_post()
|