| 60 | } |
| 61 | |
| 62 | Status RuntimeProfile::SerializeToArchiveString(string* out) const { |
| 63 | stringstream ss; |
| 64 | RETURN_IF_ERROR(SerializeToArchiveString(&ss)); |
| 65 | *out = ss.str(); |
| 66 | return Status::OK(); |
| 67 | } |
| 68 | |
| 69 | Status RuntimeProfile::SerializeToArchiveString(stringstream* out) const { |
| 70 | vector<uint8_t> compressed_buffer; |