Searched refs:proto_list (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/a2dp/ |
D | a2d_api.c | 173 tSDP_PROTOCOL_ELEM proto_list [A2D_NUM_PROTO_ELEMS]; in A2D_AddRecord() local 185 memset((void *) proto_list, 0 , A2D_NUM_PROTO_ELEMS * sizeof(tSDP_PROTOCOL_ELEM)); in A2D_AddRecord() 188 proto_list[0].protocol_uuid = UUID_PROTOCOL_L2CAP; in A2D_AddRecord() 189 proto_list[0].num_params = 1; in A2D_AddRecord() 190 proto_list[0].params[0] = AVDT_PSM; in A2D_AddRecord() 191 proto_list[1].protocol_uuid = UUID_PROTOCOL_AVDTP; in A2D_AddRecord() 192 proto_list[1].num_params = 1; in A2D_AddRecord() 193 proto_list[1].params[0] = a2d_cb.avdt_sdp_ver; in A2D_AddRecord() 195 result &= SDP_AddProtocolList(sdp_handle, A2D_NUM_PROTO_ELEMS, proto_list); in A2D_AddRecord()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/hid/ |
D | hidd_api.c | 229 tSDP_PROTOCOL_ELEM proto_list[2]; in HID_DevAddRecord() local 230 proto_list[0].protocol_uuid = UUID_PROTOCOL_L2CAP; in HID_DevAddRecord() 231 proto_list[0].num_params = 1; in HID_DevAddRecord() 232 proto_list[0].params[0] = BT_PSM_HIDC; in HID_DevAddRecord() 233 proto_list[1].protocol_uuid = UUID_PROTOCOL_HIDP; in HID_DevAddRecord() 234 proto_list[1].num_params = 0; in HID_DevAddRecord() 235 result &= SDP_AddProtocolList(handle, 2, proto_list); in HID_DevAddRecord()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/jv/ |
D | bta_jv_act.c | 1043 tSDP_PROTOCOL_ELEM proto_list[SDP_MAX_LIST_ELEMS]; in create_base_record() local 1046 memset(proto_list, 0, num_proto_elements * sizeof(tSDP_PROTOCOL_ELEM)); in create_base_record() 1048 proto_list[0].protocol_uuid = UUID_PROTOCOL_L2CAP; in create_base_record() 1049 proto_list[0].num_params = 0; in create_base_record() 1050 proto_list[1].protocol_uuid = UUID_PROTOCOL_RFCOMM; in create_base_record() 1051 proto_list[1].num_params = 1; in create_base_record() 1052 proto_list[1].params[0] = channel; in create_base_record() 1055 proto_list[2].protocol_uuid = UUID_PROTOCOL_OBEX; in create_base_record() 1056 proto_list[2].num_params = 0; in create_base_record() 1060 if (!SDP_AddProtocolList(sdp_handle, num_proto_elements, proto_list)){ in create_base_record()
|