Lines Matching refs:Write
22 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::monostate value) in Write() function in OHOS::MiscServices::TLVObject
30 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, void* value) in Write() function in OHOS::MiscServices::TLVObject
38 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, bool value) in Write() function in OHOS::MiscServices::TLVObject
42 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, int8_t value) in Write() function in OHOS::MiscServices::TLVObject
46 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, int16_t value) in Write() function in OHOS::MiscServices::TLVObject
50 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, double value) in Write() function in OHOS::MiscServices::TLVObject
54 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, int32_t value) in Write() function in OHOS::MiscServices::TLVObject
58 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, int64_t value) in Write() function in OHOS::MiscServices::TLVObject
62 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, uint32_t value) in Write() function in OHOS::MiscServices::TLVObject
66 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, const std::string &value) in Write() function in OHOS::MiscServices::TLVObject
85 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, const RawMem &value) in Write() function in OHOS::MiscServices::TLVObject
106 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, const AAFwk::Want &value) in Write() function in OHOS::MiscServices::TLVObject
108 return Write(buffer, type, ParcelUtil::Parcelable2Raw(&value)); in Write()
111 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Media::PixelMap &valu… in Write() function in OHOS::MiscServices::TLVObject
117 return Write(buffer, type, u8Value); in Write()
120 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Object &value) in Write() function in OHOS::MiscServices::TLVObject
129 if (!Write(buffer, TAG_MAP_KEY, key)) { in Write()
132 if (!Write(buffer, TAG_MAP_VALUE_TYPE, val)) { in Write()
140 bool TLVObject::Write( in Write() function in OHOS::MiscServices::TLVObject
152 ret = ret && Write(buffer, TAG_MAP_KEY, item.first); in Write()
153 ret = ret && Write(buffer, TAG_MAP_VALUE, item.second); in Write()
170 return Write(buffer, type, val); in WriteVariant()
176 bool TLVObject::Write(std::vector<std::uint8_t>& buffer, uint16_t type, const std::variant<_Types..… in Write() function in OHOS::MiscServices::TLVObject
186 if (!Write(buffer, TAG_VARIANT_INDEX, index)) { in Write()
195 bool TLVObject::Write(std::vector<std::uint8_t>& buffer, uint16_t type, const EntryValue& input) in Write() function in OHOS::MiscServices::TLVObject
205 if (!Write(buffer, TAG_VARIANT_INDEX, index)) { in Write()
215 bool TLVObject::Write(std::vector<std::uint8_t>& buffer, uint16_t type, const Details& value) in Write() function in OHOS::MiscServices::TLVObject
224 if (!Write(buffer, TAG_MAP_KEY, key)) { in Write()
227 if (!Write(buffer, TAG_MAP_VALUE_TYPE, val)) { in Write()
235 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, TLVObject &value) in Write() function in OHOS::MiscServices::TLVObject
248 bool TLVObject::Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::vector<uint8_t> &value) in Write() function in OHOS::MiscServices::TLVObject