Lines Matching refs:Read
351 bool Parcel::Read(T& value) in Read() function in OHOS::Parcel
358 T Parcel::Read() in Read() function in OHOS::Parcel
411 int32_t temp = Read<int32_t>(); in ReadBool()
417 return Read<bool>(); in ReadBoolUnaligned()
422 int32_t temp = Read<int32_t>(); in ReadInt8()
428 int32_t temp = Read<int32_t>(); in ReadInt16()
434 return Read<int32_t>(); in ReadInt32()
439 return Read<int64_t>(); in ReadInt64()
444 uint32_t temp = Read<uint32_t>(); in ReadUint8()
450 uint32_t temp = Read<uint32_t>(); in ReadUint16()
456 return Read<uint32_t>(); in ReadUint32()
461 return Read<uint64_t>(); in ReadUint64()
466 return Read<float>(); in ReadFloat()
471 return Read<double>(); in ReadDouble()
493 return Read<int8_t>(value); in ReadInt8Unaligned()
503 return Read<int16_t>(value); in ReadInt16Unaligned()
508 return Read<int32_t>(value); in ReadInt32()
513 return Read<int64_t>(value); in ReadInt64()
523 return Read<uint8_t>(value); in ReadUint8Unaligned()
533 return Read<uint16_t>(value); in ReadUint16Unaligned()
538 return Read<uint32_t>(value); in ReadUint32()
543 return Read<uint64_t>(value); in ReadUint64()
548 return Read<float>(value); in ReadFloat()
553 return Read<double>(value); in ReadDouble()
558 return Read<binder_uintptr_t>(); in ReadPointer()
678 bool Parcel::ReadVector(std::vector<T>* val, bool (Parcel::*Read)(T&)) in ReadVector()