Home
last modified time | relevance | path

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

/external/bluetooth/bluedroid/stack/gatt/
Datt_protocol.c481 UINT8 attp_cl_send_cmd(tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 cmd_code, BT_HDR *p_cmd) in attp_cl_send_cmd() argument
499 gatt_cmd_enq(p_tcb, clcb_idx, FALSE, cmd_code, NULL); in attp_cl_send_cmd()
506 gatt_cmd_enq(p_tcb, clcb_idx, TRUE, cmd_code, p_cmd); in attp_cl_send_cmd()
529 tGATT_STATUS attp_send_cl_msg (tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, tGATT_CL_MSG *p_ms… in attp_send_cl_msg() argument
620 status = attp_cl_send_cmd(p_tcb, clcb_idx, op_code, p_cmd); in attp_send_cl_msg()
Dgatt_int.h249 UINT16 clcb_idx; member
384 UINT16 clcb_idx; member
418 UINT16 clcb_idx; member
535 extern tGATT_STATUS attp_send_cl_msg (tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, tGATT_CL_MS…
630 extern UINT8 gatt_send_write_msg(tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, UINT16 handle,
641 extern BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_H…
Dgatt_cl.c100 if (attp_send_cl_msg(p_clcb->p_tcb, p_clcb->clcb_idx, op_code, &cl_req) != GATT_SUCCESS) in gatt_act_discovery()
189 (rt = attp_send_cl_msg(p_tcb, p_clcb->clcb_idx, op_code, &msg)) != GATT_SUCCESS) in gatt_act_read()
218 p_clcb->clcb_idx, in gatt_act_write()
232 p_clcb->clcb_idx, in gatt_act_write()
283 rt = attp_send_cl_msg(p_tcb, p_clcb->clcb_idx, GATT_REQ_EXEC_WRITE, (tGATT_CL_MSG *)&flag); in gatt_send_queue_write_cancel()
366 p_clcb->clcb_idx, in gatt_send_prepare_write()
Dgatt_utils.c1520 p_clcb->clcb_idx = i; in gatt_clcb_alloc()
1896 BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_HDR *p_b… in gatt_cmd_enq() argument
1903 p_cmd->clcb_idx = clcb_idx; in gatt_cmd_enq()
1932 p_clcb = &gatt_cb.clcb[p_cmd->clcb_idx]; in gatt_cmd_dequeue()
1952 UINT8 gatt_send_write_msg (tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, in gatt_send_write_msg() argument
1965 return attp_send_cl_msg(p_tcb, clcb_idx, op_code, &msg); in gatt_send_write_msg()
2099 … GATT_TRACE_DEBUG2 ("found p_clcb conn_id=%d clcb_idx=%d", p_clcb->conn_id, p_clcb->clcb_idx); in gatt_cleanup_upon_disc()
Dgatt_api.c797 … ret = attp_send_cl_msg (p_clcb->p_tcb, p_clcb->clcb_idx, GATT_REQ_MTU, (tGATT_CL_MSG *)&mtu); in GATTC_ConfigureMTU()