Lines Matching refs:Write

222     bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::monostate value);

223 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, void *value);
224 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, bool value);
225 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, double value);
226 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int8_t value);
227 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int16_t value);
228 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int32_t value);
229 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, int64_t value);
230 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, uint32_t value);
231 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const std::string &value);
232 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Object &value);
233 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const AAFwk::Want &value);
234 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Media::PixelMap &value);
235 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const RawMem &value);
236 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, TLVObject &value);
238 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::vector<T> &value)
250 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::vector<uint8_t> &value);
251 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::map<std::string, std::vector<uint8_t>> &value);
253 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, std::shared_ptr<T> &value)
258 return Write(buffer, type, *value);
268 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const std::variant<_Types...> &input);
271 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const EntryValue &input);
273 bool Write(std::vector<std::uint8_t> &buffer, uint16_t type, const Details &value);
391 ret = ret && Write(buffer, TAG_VECTOR_ITEM, item);