Home
last modified time | relevance | path

Searched refs:ObexOptionalStringHeader (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_headers.cpp197 header = std::make_unique<ObexOptionalStringHeader>(headerId, &buf[pos], dataLen); in ParseBytes()
468 …std::unique_ptr<ObexOptionalHeader> header = std::make_unique<ObexOptionalStringHeader>(headerId, … in AppendString()
718 const ObexOptionalStringHeader *ObexHeader::GetItemType() const in GetItemType()
720 return GetItem<ObexOptionalStringHeader *>(ObexHeader::TYPE); in GetItemType()
1026 ObexOptionalStringHeader::ObexOptionalStringHeader(const uint8_t headerId, const std::string &str) in ObexOptionalStringHeader() function in OHOS::bluetooth::ObexOptionalStringHeader
1031 ObexOptionalStringHeader::ObexOptionalStringHeader(const uint8_t headerId, in ObexOptionalStringHeader() function in OHOS::bluetooth::ObexOptionalStringHeader
1036 std::string ObexOptionalStringHeader::GetString() const in GetString()
1045 ObexHeaderDataType ObexOptionalStringHeader::GetHeaderClassType() const in GetHeaderClassType()
1050 std::string ObexOptionalStringHeader::GetHeaderClassTypeName() const in GetHeaderClassTypeName()
1055 std::unique_ptr<ObexOptionalHeader> ObexOptionalStringHeader::Clone() const in Clone()
[all …]
H A Dobex_headers.h283 class ObexOptionalStringHeader : public ObexOptionalBytesHeader {
285 ObexOptionalStringHeader(const uint8_t headerId, const std::string &str);
286 ObexOptionalStringHeader(const uint8_t headerId, const uint8_t *data, const uint16_t dataSize);
288 ~ObexOptionalStringHeader() override = default;
485 const ObexOptionalStringHeader *GetItemType() const;
H A Dobex_utils.cpp154 …OBEX_LOG_INFO("String:%{public}s", static_cast<const ObexOptionalStringHeader *>(&hi)->GetString()… in ObexHeaderItemDebug()