Searched refs:num_handles (Results 1 - 14 of 14) sorted by relevance

/system/bt/stack/include/
H A Davdtc_api.h168 extern void AVDTC_StartRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
190 extern void AVDTC_SuspendRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
H A Davdt_api.h673 extern UINT16 AVDT_StartReq(UINT8 *p_handles, UINT8 num_handles);
690 extern UINT16 AVDT_SuspendReq(UINT8 *p_handles, UINT8 num_handles);
H A Dgatt_api.h440 UINT16 num_handles; /* number of handles to read */ member in struct:__anon1112
731 ** num_handles : number of handles needed by the service.
738 UINT16 svc_inst, UINT16 num_handles, BOOLEAN is_pri);
H A Dhcimsgs.h574 extern BOOLEAN btsnd_hcic_host_num_xmitted_pkts (UINT8 num_handles,
/system/bt/stack/avdt/
H A Davdt_api.c635 UINT16 AVDT_StartReq(UINT8 *p_handles, UINT8 num_handles) argument
642 if ((num_handles == 0) || (num_handles > AVDT_NUM_SEPS))
649 for (i = 0; i < num_handles; i++)
668 memcpy(evt.msg.multi.seid_list, p_handles, num_handles);
669 evt.msg.multi.num_seps = num_handles;
691 UINT16 AVDT_SuspendReq(UINT8 *p_handles, UINT8 num_handles) argument
698 if ((num_handles == 0) || (num_handles > AVDT_NUM_SEPS))
705 for (i = 0; i < num_handles;
[all...]
/system/bt/stack/sdp/
H A Dsdp_discovery.c209 p_ccb->num_handles = 0;
299 orig = p_ccb->num_handles;
300 p_ccb->num_handles += cur_handles;
301 if (p_ccb->num_handles == 0)
311 if (p_ccb->num_handles > sdp_cb.max_recs_per_search)
312 p_ccb->num_handles = sdp_cb.max_recs_per_search;
314 for (xx = orig; xx < p_ccb->num_handles; xx++)
486 if (p_ccb->cur_handle < p_ccb->num_handles)
H A Dsdpint.h193 UINT16 num_handles; /* Number of server handles */ member in struct:__anon1268
/system/bt/btif/src/
H A Dbtif_gatt_server.c102 uint8_t num_handles; member in struct:__anon664
448 srvc_id.id.inst_id, p_cb->num_handles,
563 int num_handles)
568 btif_cb.num_handles = (uint8_t) num_handles;
562 btif_gatts_add_service(int server_if, btgatt_srvc_id_t *srvc_id, int num_handles) argument
/system/bt/stack/gatt/
H A Dgatt_sr.c148 GKI_queue_length(&p_cmd->multi_rsp_q), p_cmd->multi_req.num_handles);
150 if (GKI_queue_length(&p_cmd->multi_rsp_q) == p_cmd->multi_req.num_handles)
168 for (ii = 0; ii < p_cmd->multi_req.num_handles; ii++)
405 p_tcb->sr_cmd.multi_req.num_handles = 0;
425 while (ll >= 2 && p_tcb->sr_cmd.multi_req.num_handles < GATT_MAX_READ_MULTI_HANDLES)
431 p_tcb->sr_cmd.multi_req.handles[p_tcb->sr_cmd.multi_req.num_handles++] = handle;
459 if (p_tcb->sr_cmd.multi_req.num_handles == 0)
468 for (ll = 0; ll < p_tcb->sr_cmd.multi_req.num_handles; ll ++)
H A Dgatt_api.c135 ** num_handles : number of handles needed by the service.
142 UINT16 svc_inst, UINT16 num_handles, BOOLEAN is_pri)
197 if (num_handles > (0xFFFF - s_hdl + 1))
199 GATT_TRACE_ERROR ("GATTS_ReserveHandles: no handles, s_hdl: %u needed: %u", s_hdl, num_handles);
214 p_list->asgn_range.e_handle = s_hdl+num_handles-1;
241 if (!gatts_init_service_db(&p_list->svc_db, p_svc_uuid, is_pri, s_hdl , num_handles))
256 num_handles, p_list->asgn_range.s_handle , p_list->asgn_range.e_handle,
141 GATTS_CreateService(tGATT_IF gatt_if, tBT_UUID *p_svc_uuid, UINT16 svc_inst, UINT16 num_handles, BOOLEAN is_pri) argument
H A Datt_protocol.c615 p_msg->read_multi.num_handles,
/system/bt/stack/l2cap/
H A Dl2c_link.c1425 UINT8 num_handles, xx; local
1430 STREAM_TO_UINT8 (num_handles, p);
1432 for (xx = 0; xx < num_handles; xx++)
/system/bt/stack/hcic/
H A Dhcicmds.c1262 BOOLEAN btsnd_hcic_host_num_xmitted_pkts (UINT8 num_handles, UINT16 *handle, argument
1269 if ((p = HCI_GET_CMD_BUF(1 + (num_handles * 4))) == NULL)
1274 p->len = HCIC_PREAMBLE_SIZE + 1 + (num_handles * 4);
1280 UINT8_TO_STREAM (pp, num_handles);
1282 for (j = 0; j < num_handles; j++)
/system/bt/bta/gatt/
H A Dbta_gattc_act.c1179 read_param.read_multiple.num_handles = p_data->api_read_multi.num_attr;

Completed in 72 milliseconds