Home
last modified time | relevance | path

Searched refs:baseAttributeId (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/sdp/
H A Dsdp_server.h48 … uint32_t handle, const SdpLanguageBaseAttributeId *baseAttributeId, uint16_t baseAttributeIdNum);
56 int SdpAddServiceName(uint32_t handle, uint16_t baseAttributeId, const char *name, uint16_t nameLen…
58 uint32_t handle, uint16_t baseAttributeId, const char *description, uint16_t descriptionLen);
59 int SdpAddProviderName(uint32_t handle, uint16_t baseAttributeId, const char *name, uint16_t nameLe…
H A Dsdp.c100 const SdpLanguageBaseAttributeId *baseAttributeId; member
138 uint16_t baseAttributeId; member
726 uint32_t handle, const SdpLanguageBaseAttributeId *baseAttributeId, uint16_t baseAttributeIdNum) in SDP_AddLanguageBaseAttributeIdList() argument
739 ctx->baseAttributeId = baseAttributeId; in SDP_AddLanguageBaseAttributeIdList()
1014 ctx->result = SdpAddServiceName(ctx->handle, ctx->baseAttributeId, ctx->name, ctx->nameLen); in SdpAddServiceNameTask()
1020 int SDP_AddServiceName(uint32_t handle, uint16_t baseAttributeId, const char *name, uint16_t nameLe… in SDP_AddServiceName() argument
1033 ctx->baseAttributeId = baseAttributeId; in SDP_AddServiceName()
1064 uint32_t handle, uint16_t baseAttributeId, const char *description, uint16_t descriptionLen) in SDP_AddServiceDescription() argument
1079 ctx->baseAttributeId = baseAttributeId; in SDP_AddServiceDescription()
1101 ctx->result = SdpAddProviderName(ctx->handle, ctx->baseAttributeId, ctx->name, ctx->nameLen); in SdpAddProviderNameTask()
[all …]
H A Dsdp_server.c438 uint32_t handle, const SdpLanguageBaseAttributeId *baseAttributeId, uint16_t baseAttributeIdNum) in SdpAddLanguageBaseAttributeIdList() argument
466 *(uint16_t *)(buffer + offset) = H2BE_16(baseAttributeId[i].languageIdentifier); in SdpAddLanguageBaseAttributeIdList()
472 *(uint16_t *)(buffer + offset) = H2BE_16(baseAttributeId[i].characterEncodingIdentifier); in SdpAddLanguageBaseAttributeIdList()
478 *(uint16_t *)(buffer + offset) = H2BE_16(baseAttributeId[i].baseAttributeId); in SdpAddLanguageBaseAttributeIdList()
637 int SdpAddServiceName(uint32_t handle, uint16_t baseAttributeId, const char *name, uint16_t nameLen) in SdpAddServiceName() argument
643 baseAttributeId, in SdpAddServiceName()
663 uint32_t handle, uint16_t baseAttributeId, const char *description, uint16_t descriptionLen) in SdpAddServiceDescription() argument
669 baseAttributeId, in SdpAddServiceDescription()
683 …ret = SdpAddAttributeToServiceRecord(handle, SDP_ATTRIBUTE_DESCRIPTOR + baseAttributeId, 0, offset… in SdpAddServiceDescription()
688 int SdpAddProviderName(uint32_t handle, uint16_t baseAttributeId, const char *name, uint16_t nameLe… in SdpAddProviderName() argument
[all …]
H A Dsdp_client_parse.c1209 …service->baseAttributeId = MEM_MALLOC.alloc(sizeof(SdpLanguageBaseAttributeId) * SDP_LANGUAGE_ATTR… in SdpGetLanguageBaseAttributeIdList()
1210 if (service->baseAttributeId == NULL) { in SdpGetLanguageBaseAttributeIdList()
1215 (void)memset_s(service->baseAttributeId, setLength, 0, setLength); in SdpGetLanguageBaseAttributeIdList()
1225 service->baseAttributeId[baseAttributeIdNumber].languageIdentifier = in SdpGetLanguageBaseAttributeIdList()
1236 service->baseAttributeId[baseAttributeIdNumber].characterEncodingIdentifier = in SdpGetLanguageBaseAttributeIdList()
1247 service->baseAttributeId[baseAttributeIdNumber].baseAttributeId = in SdpGetLanguageBaseAttributeIdList()
1896 if (service->baseAttributeId) { in SdpFreeService()
1897 MEM_MALLOC.free(service->baseAttributeId); in SdpFreeService()
1898 service->baseAttributeId = NULL; in SdpFreeService()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/include/
H A Dsdp.h129 uint16_t baseAttributeId; member
250 … uint32_t handle, const SdpLanguageBaseAttributeId *baseAttributeId, uint16_t baseAttributeIdNum);
332 int BTSTACK_API SDP_AddServiceName(uint32_t handle, uint16_t baseAttributeId, const char *name, uin…
345 uint32_t handle, uint16_t baseAttributeId, const char *description, uint16_t descriptionLen);
357 int BTSTACK_API SDP_AddProviderName(uint32_t handle, uint16_t baseAttributeId, const char *name, ui…
460 SdpLanguageBaseAttributeId *baseAttributeId; member
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/
H A Dpan_sdp.cpp172 languageBaseAttr.baseAttributeId = PAN_LANGUAGE_BASE_ID; in AddLanguageBaseAttributeIdList()