Lines Matching refs:PropInfo
78 const std::vector<PropInfo>& vec) {
87 std::ostream& operator<<(std::ostream& output, const PropInfo& info) {
164 V(PropInfo) \
497 // Layout of PropInfo
500 // [ 4 bytes ] index in the PropInfo vector
504 PropInfo SnapshotDeserializer::Read() {
505 Debug("Read<PropInfo>()\n");
507 PropInfo result;
514 Debug("Read<PropInfo>() %s\n", str.c_str());
521 size_t SnapshotSerializer::Write(const PropInfo& data) {
524 Debug("Write<PropInfo>() %s\n", str.c_str());
531 Debug("Write<PropInfo>() wrote %d bytes\n", written_total);
680 // [ ... ] |length| of PropInfo data
688 result.template_values = ReadVector<PropInfo>();
704 written_total += WriteVector<PropInfo>(data.template_values);
715 result.persistent_values = ReadVector<PropInfo>();
716 result.native_objects = ReadVector<PropInfo>();
730 written_total += WriteVector<PropInfo>(data.persistent_values);
731 written_total += WriteVector<PropInfo>(data.native_objects);