Lines Matching refs:value

285     bool WriteBool(bool value);
286 bool WriteInt8(int8_t value);
287 bool WriteInt16(int16_t value);
288 bool WriteInt32(int32_t value);
289 bool WriteInt64(int64_t value);
290 bool WriteUint8(uint8_t value);
291 bool WriteUint16(uint16_t value);
292 bool WriteUint32(uint32_t value);
293 bool WriteUint64(uint64_t value);
294 bool WriteFloat(float value);
295 bool WriteDouble(double value);
296 bool WritePointer(uintptr_t value);
339 * @param value Indicates a pointer of the char type to a C-style string.
343 bool WriteCString(const char *value);
351 * @param value Indicates the reference to an `std::string` object.
355 bool WriteString(const std::string &value);
364 * @param value Indicates the reference to an `std::u16string` object.
368 bool WriteString16(const std::u16string &value);
379 * @param value Indicates the pointer to a UTF-16 encoded string.
384 bool WriteString16WithLength(const char16_t *value, size_t len);
393 * @param value Indicates the pointer to a UTF-8 encoded string.
398 bool WriteString8WithLength(const char *value, size_t len);
409 * @note The value '0' of `Int32_t` will be written if a null pointer
486 bool ReadBool(bool &value);
488 bool ReadInt8(int8_t &value);
490 bool ReadInt16(int16_t &value);
492 bool ReadInt32(int32_t &value);
494 bool ReadInt64(int64_t &value);
496 bool ReadUint8(uint8_t &value);
498 bool ReadUint16(uint16_t &value);
500 bool ReadUint32(uint32_t &value);
502 bool ReadUint64(uint64_t &value);
504 bool ReadFloat(float &value);
506 bool ReadDouble(double &value);
564 * @param value Indicates the `std::string` object to hold the data read.
568 bool ReadString(std::string &value);
583 * @param value Indicates the `std::u16string` object to hold the data read.
587 bool ReadString16(std::u16string &value);
720 * @param Write Indicates the `Parcel::Write(T2 value)` method.
748 * @param Write Indicates the `Parcel::Read(T2 value)` method.
771 bool WriteBoolUnaligned(bool value);
772 bool WriteInt8Unaligned(int8_t value);
773 bool WriteInt16Unaligned(int16_t value);
774 bool WriteUint8Unaligned(uint8_t value);
775 bool WriteUint16Unaligned(uint16_t value);
778 bool ReadInt8Unaligned(int8_t &value);
779 bool ReadInt16Unaligned(int16_t &value);
780 bool ReadUint8Unaligned(uint8_t &value);
781 bool ReadUint16Unaligned(uint16_t &value);
808 bool Write(T value);
811 bool Read(T &value);
817 bool ReadPadded(T &value);