Lines Matching refs:Write
224 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::monostate value);
225 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, void* value);
226 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, bool value);
227 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, double value);
228 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int8_t value);
229 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int16_t value);
230 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int32_t value);
231 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int64_t value);
232 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, uint32_t value);
233 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const std::string &value);
234 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Object &value);
235 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const AAFwk::Want &value);
236 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Media::PixelMap &value);
237 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const RawMem &value);
238 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, TLVObject &value);
240 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::vector<T> &value) in Write() function
252 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::vector<uint8_t> &value);
253 …bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::map<std::string, std::vector<uin…
255 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::shared_ptr<T> &value) in Write() function
260 return Write(buffer, type, *value); in Write()
270 …bool Write(std::vector<std::uint8_t>& buffer, uint16_t type, const std::variant<_Types...>& input);
273 bool Write(std::vector<std::uint8_t>& buffer, uint16_t type, const EntryValue& input);
275 bool Write(std::vector<std::uint8_t>& buffer, uint16_t type, const Details& value);
393 ret = ret && Write(buffer, TAG_VECTOR_ITEM, item); in WriteValue()