Home
last modified time | relevance | path

Searched refs:req_id (Results 1 – 5 of 5) sorted by relevance

/system/bt/bta/include/
Dbta_jv_api.h240 UINT32 req_id; /* The req_id in the associated BTA_JvL2capRead() */ member
251 UINT32 req_id; /* The req_id in the associated BTA_JvL2capReceive() */ member
262 UINT32 req_id; /* The req_id in the associated BTA_JvL2capWrite() */ member
274 UINT32 req_id; /* The req_id in the associated BTA_JvL2capWrite() */ member
349 UINT32 req_id; /* The req_id in the associated BTA_JvRfcommRead() */ member
360 UINT32 req_id; /* The req_id in the associated BTA_JvRfcommWrite() */ member
700 extern tBTA_JV_STATUS BTA_JvL2capRead(UINT32 handle, UINT32 req_id,
716 extern tBTA_JV_STATUS BTA_JvL2capReceive(UINT32 handle, UINT32 req_id,
745 extern tBTA_JV_STATUS BTA_JvL2capWrite(UINT32 handle, UINT32 req_id,
762 extern tBTA_JV_STATUS BTA_JvL2capWriteFixed(UINT16 channel, BD_ADDR *addr, UINT32 req_id,
[all …]
/system/bt/bta/jv/
Dbta_jv_api.c665 tBTA_JV_STATUS BTA_JvL2capRead(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvL2capRead() argument
678 evt_data.req_id = req_id; in BTA_JvL2capRead()
706 tBTA_JV_STATUS BTA_JvL2capReceive(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvL2capReceive() argument
721 evt_data.req_id = req_id; in BTA_JvL2capReceive()
784 tBTA_JV_STATUS BTA_JvL2capWrite(UINT32 handle, UINT32 req_id, UINT8 *p_data, in BTA_JvL2capWrite() argument
797 p_msg->req_id = req_id; in BTA_JvL2capWrite()
822 tBTA_JV_STATUS BTA_JvL2capWriteFixed(UINT16 channel, BD_ADDR *addr, UINT32 req_id, in BTA_JvL2capWriteFixed() argument
836 p_msg->req_id = req_id; in BTA_JvL2capWriteFixed()
1008 tBTA_JV_STATUS BTA_JvRfcommRead(UINT32 handle, UINT32 req_id, UINT8 *p_data, UINT16 len) in BTA_JvRfcommRead() argument
1022 p_msg->req_id = req_id; in BTA_JvRfcommRead()
[all …]
Dbta_jv_int.h215 UINT32 req_id; member
227 UINT32 req_id; member
240 UINT32 req_id; member
277 UINT32 req_id; member
306 UINT32 req_id; member
Dbta_jv_act.c1343 evt_data.req_id = rc->req_id; in bta_jv_l2cap_read()
1386 evt_data.req_id = ls->req_id; in bta_jv_l2cap_write()
1426 evt_data.req_id = ls->req_id; in bta_jv_l2cap_write_fixed()
2078 evt_data.req_id = rc->req_id; in bta_jv_rfcomm_read()
2107 evt_data.req_id = wc->req_id; in bta_jv_rfcomm_write()
/system/bt/btif/src/
Dbtif_sock_l2cap.c662 static void on_l2cap_write_done(void* req_id, uint32_t id) in on_l2cap_write_done() argument
666 if (req_id != NULL) { in on_l2cap_write_done()
667 osi_free(req_id); //free the buffer in on_l2cap_write_done()
680 static void on_l2cap_write_fixed_done(void* req_id, uint32_t id) in on_l2cap_write_fixed_done() argument
684 if (req_id != NULL) { in on_l2cap_write_fixed_done()
685 osi_free(req_id); //free the buffer in on_l2cap_write_fixed_done()
783 on_l2cap_write_done((void*)p_data->l2c_write.req_id, (uint32_t)user_data); in btsock_l2cap_cbk()
788 on_l2cap_write_fixed_done((void*)p_data->l2c_write_fixed.req_id, (uint32_t)user_data); in btsock_l2cap_cbk()