• Home
  • Raw
  • Download

Lines Matching refs:p_buf

55   BT_HDR* p_buf = (BT_HDR*)osi_malloc(sizeof(BT_HDR));  in bta_pan_ci_tx_ready()  local
57 p_buf->layer_specific = handle; in bta_pan_ci_tx_ready()
58 p_buf->event = BTA_PAN_CI_TX_READY_EVT; in bta_pan_ci_tx_ready()
60 bta_sys_sendmsg(p_buf); in bta_pan_ci_tx_ready()
77 BT_HDR* p_buf = (BT_HDR*)osi_malloc(sizeof(BT_HDR)); in bta_pan_ci_rx_ready() local
79 p_buf->layer_specific = handle; in bta_pan_ci_rx_ready()
80 p_buf->event = BTA_PAN_CI_RX_READY_EVT; in bta_pan_ci_rx_ready()
82 bta_sys_sendmsg(p_buf); in bta_pan_ci_rx_ready()
101 tBTA_PAN_CI_TX_FLOW* p_buf = in bta_pan_ci_tx_flow() local
104 p_buf->hdr.layer_specific = handle; in bta_pan_ci_tx_flow()
105 p_buf->hdr.event = BTA_PAN_CI_TX_FLOW_EVT; in bta_pan_ci_tx_flow()
106 p_buf->enable = enable; in bta_pan_ci_tx_flow()
108 bta_sys_sendmsg(p_buf); in bta_pan_ci_tx_flow()
126 BT_HDR* p_buf = (BT_HDR*)osi_malloc(PAN_BUF_SIZE); in bta_pan_ci_rx_write() local
128 p_buf->offset = PAN_MINIMUM_OFFSET; in bta_pan_ci_rx_write()
131 ((tBTA_PAN_DATA_PARAMS*)p_buf)->src = src; in bta_pan_ci_rx_write()
132 ((tBTA_PAN_DATA_PARAMS*)p_buf)->dst = dst; in bta_pan_ci_rx_write()
133 ((tBTA_PAN_DATA_PARAMS*)p_buf)->protocol = protocol; in bta_pan_ci_rx_write()
134 ((tBTA_PAN_DATA_PARAMS*)p_buf)->ext = ext; in bta_pan_ci_rx_write()
135 p_buf->len = len; in bta_pan_ci_rx_write()
138 memcpy((uint8_t*)(p_buf + 1) + p_buf->offset, p_data, len); in bta_pan_ci_rx_write()
140 p_buf->layer_specific = handle; in bta_pan_ci_rx_write()
141 p_buf->event = BTA_PAN_CI_RX_WRITEBUF_EVT; in bta_pan_ci_rx_write()
143 bta_sys_sendmsg(p_buf); in bta_pan_ci_rx_write()
162 BT_HDR* p_buf, bool ext) { in bta_pan_ci_rx_writebuf() argument
164 ((tBTA_PAN_DATA_PARAMS*)p_buf)->src = src; in bta_pan_ci_rx_writebuf()
165 ((tBTA_PAN_DATA_PARAMS*)p_buf)->dst = dst; in bta_pan_ci_rx_writebuf()
166 ((tBTA_PAN_DATA_PARAMS*)p_buf)->protocol = protocol; in bta_pan_ci_rx_writebuf()
167 ((tBTA_PAN_DATA_PARAMS*)p_buf)->ext = ext; in bta_pan_ci_rx_writebuf()
169 p_buf->layer_specific = handle; in bta_pan_ci_rx_writebuf()
170 p_buf->event = BTA_PAN_CI_RX_WRITEBUF_EVT; in bta_pan_ci_rx_writebuf()
171 bta_sys_sendmsg(p_buf); in bta_pan_ci_rx_writebuf()
187 BT_HDR* p_buf; in bta_pan_ci_readbuf() local
191 p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_scb->data_queue); in bta_pan_ci_readbuf()
192 if (p_buf != NULL) { in bta_pan_ci_readbuf()
193 src = ((tBTA_PAN_DATA_PARAMS*)p_buf)->src; in bta_pan_ci_readbuf()
194 dst = ((tBTA_PAN_DATA_PARAMS*)p_buf)->dst; in bta_pan_ci_readbuf()
195 *p_protocol = ((tBTA_PAN_DATA_PARAMS*)p_buf)->protocol; in bta_pan_ci_readbuf()
196 *p_ext = ((tBTA_PAN_DATA_PARAMS*)p_buf)->ext; in bta_pan_ci_readbuf()
197 *p_forward = ((tBTA_PAN_DATA_PARAMS*)p_buf)->forward; in bta_pan_ci_readbuf()
200 return p_buf; in bta_pan_ci_readbuf()
245 UNUSED_ATTR BT_HDR* p_buf, UNUSED_ATTR bool ext) {} in bta_pan_ci_rx_writebuf() argument