Lines Matching refs:cl_req
84 tGATT_CL_MSG cl_req; in gatt_act_discovery() local
89 memset(&cl_req, 0, sizeof(tGATT_CL_MSG)); in gatt_act_discovery()
91 cl_req.browse.s_handle = p_clcb->s_handle; in gatt_act_discovery()
92 cl_req.browse.e_handle = p_clcb->e_handle; in gatt_act_discovery()
96 cl_req.browse.uuid.len = 2; in gatt_act_discovery()
97 cl_req.browse.uuid.uu.uuid16 = disc_type_to_uuid[p_clcb->op_subtype]; in gatt_act_discovery()
102 cl_req.find_type_value.uuid.len = 2; in gatt_act_discovery()
103 cl_req.find_type_value.uuid.uu.uuid16 = disc_type_to_uuid[p_clcb->op_subtype]; in gatt_act_discovery()
104 cl_req.find_type_value.s_handle = p_clcb->s_handle; in gatt_act_discovery()
105 cl_req.find_type_value.e_handle = p_clcb->e_handle; in gatt_act_discovery()
106 cl_req.find_type_value.value_len = p_clcb->uuid.len; in gatt_act_discovery()
110 cl_req.find_type_value.value_len = LEN_UUID_128; in gatt_act_discovery()
111 … gatt_convert_uuid32_to_uuid128(cl_req.find_type_value.value, p_clcb->uuid.uu.uuid32); in gatt_act_discovery()
114 memcpy (cl_req.find_type_value.value, &p_clcb->uuid.uu, p_clcb->uuid.len); in gatt_act_discovery()
117 st = attp_send_cl_msg(p_clcb->p_tcb, p_clcb->clcb_idx, op_code, &cl_req); in gatt_act_discovery()