Lines Matching refs:val
45 bool WriteString(Parcel &parcel, const rust::str val);
46 bool ReadString(Parcel &parcel, rust::string &val);
48 bool WriteString16(Parcel &parcel, const rust::str val);
54 bool WriteBoolVector(Parcel &parcel, rust::slice<const bool> val);
55 bool WriteInt8Vector(Parcel &parcel, rust::slice<const int8_t> val);
56 bool WriteInt16Vector(Parcel &parcel, rust::slice<const int16_t> val);
57 bool WriteInt32Vector(Parcel &parcel, rust::slice<const int32_t> val);
58 bool WriteInt64Vector(Parcel &parcel, rust::slice<const int64_t> val);
59 bool WriteUInt8Vector(Parcel &parcel, rust::slice<const uint8_t> val);
60 bool WriteUInt16Vector(Parcel &parcel, rust::slice<const uint16_t> val);
61 bool WriteUInt32Vector(Parcel &parcel, rust::slice<const uint32_t> val);
62 bool WriteUInt64Vector(Parcel &parcel, rust::slice<const uint64_t> val);
63 bool WriteFloatVector(Parcel &parcel, rust::slice<const float> val);
64 bool WriteDoubleVector(Parcel &parcel, rust::slice<const double> val);
65 bool WriteStringVector(Parcel &parcel, rust::slice<const rust::string> val);
66 bool WriteString16Vector(Parcel &parcel, rust::slice<const rust::string> val);
68 bool ReadBoolVector(Parcel &parcel, rust::vec<bool> &val);
69 bool ReadInt8Vector(Parcel &parcel, rust::vec<int8_t> &val);
70 bool ReadInt16Vector(Parcel &parcel, rust::vec<int16_t> &val);
71 bool ReadInt32Vector(Parcel &parcel, rust::vec<int32_t> &val);
72 bool ReadInt64Vector(Parcel &parcel, rust::vec<int64_t> &val);
73 bool ReadUInt8Vector(Parcel &parcel, rust::vec<uint8_t> &val);
74 bool ReadUInt16Vector(Parcel &parcel, rust::vec<uint16_t> &val);
75 bool ReadUInt32Vector(Parcel &parcel, rust::vec<uint32_t> &val);
76 bool ReadUInt64Vector(Parcel &parcel, rust::vec<uint64_t> &val);
77 bool ReadFloatVector(Parcel &parcel, rust::vec<float> &val);
78 bool ReadDoubleVector(Parcel &parcel, rust::vec<double> &val);
79 bool ReadStringVector(Parcel &parcel, rust::vec<rust::string> &val);
80 bool ReadString16Vector(Parcel &parcel, rust::vec<rust::string> &val);