BufferFragment constructor
| 1142 | |
| 1143 | // BufferFragment constructor |
| 1144 | Log::Decoder::BufferFragment::BufferFragment() |
| 1145 | : storage() |
| 1146 | , validBytes(0) |
| 1147 | , runtimeId(-1) |
| 1148 | , readPos(nullptr) |
| 1149 | , endOfBuffer(nullptr) |
| 1150 | , hasMoreLogs(false) |
| 1151 | , nextLogId(-1) |
| 1152 | , nextLogTimestamp(0) |
| 1153 | { |
| 1154 | } |
| 1155 | |
| 1156 | /** |
| 1157 | * Resets the state of the BufferFragment so that the data cannot be reused |
nothing calls this directly
no outgoing calls
no test coverage detected