Searched refs:num_handles (Results 1 - 18 of 18) 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.h668 extern UINT16 AVDT_StartReq(UINT8 *p_handles, UINT8 num_handles);
685 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:__anon1147
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.c615 UINT16 AVDT_StartReq(UINT8 *p_handles, UINT8 num_handles) argument
622 if ((num_handles == 0) || (num_handles > AVDT_NUM_SEPS))
629 for (i = 0; i < num_handles; i++)
648 memcpy(evt.msg.multi.seid_list, p_handles, num_handles);
649 evt.msg.multi.num_seps = num_handles;
671 UINT16 AVDT_SuspendReq(UINT8 *p_handles, UINT8 num_handles) argument
678 if ((num_handles == 0) || (num_handles > AVDT_NUM_SEPS))
685 for (i = 0; i < num_handles;
[all...]
/system/bt/service/
H A Dgatt_server.h213 ServiceDeclaration() : num_handles(0), service_handle(-1) {}
215 size_t num_handles; member in struct:bluetooth::GattServer::ServiceDeclaration
H A Dgatt_server.cpp100 pending_decl_->num_handles++; // 1 handle for the service decl. attribute
130 pending_decl_->num_handles += 2;
160 pending_decl_->num_handles += 1;
189 CHECK(pending_decl_->num_handles > 0);
201 server_id_, &hal_id, pending_decl_->num_handles);
/system/bt/stack/sdp/
H A Dsdp_discovery.c204 p_ccb->num_handles = 0;
294 orig = p_ccb->num_handles;
295 p_ccb->num_handles += cur_handles;
296 if (p_ccb->num_handles == 0)
306 if (p_ccb->num_handles > sdp_cb.max_recs_per_search)
307 p_ccb->num_handles = sdp_cb.max_recs_per_search;
309 for (xx = orig; xx < p_ccb->num_handles; xx++)
473 if (p_ccb->cur_handle < p_ccb->num_handles)
H A Dsdpint.h192 UINT16 num_handles; /* Number of server handles */ member in struct:__anon1276
/system/bt/btif/src/
H A Dbtif_gatt_server.c100 uint8_t num_handles; member in struct:__anon655
448 p_cb->srvc_id.id.inst_id, p_cb->num_handles,
564 int num_handles)
569 btif_cb.num_handles = (uint8_t) num_handles;
563 btif_gatts_add_service(int server_if, btgatt_srvc_id_t *srvc_id, int num_handles) argument
/system/bt/service/hal/
H A Dfake_bluetooth_gatt_interface.h67 int server_if, btgatt_srvc_id_t* srvc_id, int num_handles) = 0;
H A Dfake_bluetooth_gatt_interface.cpp115 int server_if, btgatt_srvc_id_t* srvc_id, int num_handles) {
117 return g_server_handler->AddService(server_if, srvc_id, num_handles);
114 FakeAddService( int server_if, btgatt_srvc_id_t* srvc_id, int num_handles) argument
/system/bt/stack/gatt/
H A Dgatt_sr.c140 p_cmd->multi_req.num_handles);
142 if (fixed_queue_length(p_cmd->multi_rsp_q) == p_cmd->multi_req.num_handles)
158 for (ii = 0; ii < p_cmd->multi_req.num_handles; ii++)
396 p_tcb->sr_cmd.multi_req.num_handles = 0;
416 while (ll >= 2 && p_tcb->sr_cmd.multi_req.num_handles < GATT_MAX_READ_MULTI_HANDLES)
422 p_tcb->sr_cmd.multi_req.handles[p_tcb->sr_cmd.multi_req.num_handles++] = handle;
450 if (p_tcb->sr_cmd.multi_req.num_handles == 0)
459 for (ll = 0; ll < p_tcb->sr_cmd.multi_req.num_handles; ll ++) {
H A Dgatt_api.c134 ** num_handles : number of handles needed by the service.
141 UINT16 svc_inst, UINT16 num_handles, BOOLEAN is_pri)
196 if (num_handles > (0xFFFF - s_hdl + 1))
198 GATT_TRACE_ERROR ("GATTS_ReserveHandles: no handles, s_hdl: %u needed: %u", s_hdl, num_handles);
213 p_list->asgn_range.e_handle = s_hdl+num_handles-1;
240 if (!gatts_init_service_db(&p_list->svc_db, p_svc_uuid, is_pri, s_hdl , num_handles))
255 num_handles, p_list->asgn_range.s_handle , p_list->asgn_range.e_handle,
140 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.c587 p_msg->read_multi.num_handles,
/system/bt/stack/l2cap/
H A Dl2c_link.c1387 UINT8 num_handles, xx; local
1392 STREAM_TO_UINT8 (num_handles, p);
1394 for (xx = 0; xx < num_handles; xx++)
/system/bt/stack/hcic/
H A Dhcicmds.c1009 BOOLEAN btsnd_hcic_host_num_xmitted_pkts (UINT8 num_handles, UINT16 *handle, argument
1015 p->len = HCIC_PREAMBLE_SIZE + 1 + (num_handles * 4);
1021 UINT8_TO_STREAM (pp, num_handles);
1023 for (int i = 0; i < num_handles; i++) {
/system/bt/bta/gatt/
H A Dbta_gattc_act.c1125 read_param.read_multiple.num_handles = p_data->api_read_multi.num_attr;

Completed in 1149 milliseconds