Searched refs:proto_list (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/stack/a2dp/ |
D | a2d_api.c | 188 tSDP_PROTOCOL_ELEM proto_list [A2D_NUM_PROTO_ELEMS]; in A2D_AddRecord() local 200 memset((void *) proto_list, 0 , A2D_NUM_PROTO_ELEMS * sizeof(tSDP_PROTOCOL_ELEM)); in A2D_AddRecord() 203 proto_list[0].protocol_uuid = UUID_PROTOCOL_L2CAP; in A2D_AddRecord() 204 proto_list[0].num_params = 1; in A2D_AddRecord() 205 proto_list[0].params[0] = AVDT_PSM; in A2D_AddRecord() 206 proto_list[1].protocol_uuid = UUID_PROTOCOL_AVDTP; in A2D_AddRecord() 207 proto_list[1].num_params = 1; in A2D_AddRecord() 208 proto_list[1].params[0] = a2d_cb.avdt_sdp_ver; in A2D_AddRecord() 210 result &= SDP_AddProtocolList(sdp_handle, A2D_NUM_PROTO_ELEMS, proto_list); in A2D_AddRecord()
|
/hal_espressif-latest/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-latest/components/bt/host/bluedroid/bta/jv/ |
D | bta_jv_act.c | 1078 tSDP_PROTOCOL_ELEM proto_list[SDP_MAX_LIST_ELEMS]; in create_base_record() local 1081 memset(proto_list, 0, num_proto_elements * sizeof(tSDP_PROTOCOL_ELEM)); in create_base_record() 1083 proto_list[0].protocol_uuid = UUID_PROTOCOL_L2CAP; in create_base_record() 1084 proto_list[0].num_params = 0; in create_base_record() 1085 proto_list[1].protocol_uuid = UUID_PROTOCOL_RFCOMM; in create_base_record() 1086 proto_list[1].num_params = 1; in create_base_record() 1087 proto_list[1].params[0] = channel; in create_base_record() 1090 proto_list[2].protocol_uuid = UUID_PROTOCOL_OBEX; in create_base_record() 1091 proto_list[2].num_params = 0; in create_base_record() 1095 if (!SDP_AddProtocolList(sdp_handle, num_proto_elements, proto_list)){ in create_base_record()
|