* Decompress the file open()-ed to a file descriptor. This invocation will * not attempt to sort the log entries by time, but otherwise functions * in the same way as decompressTo(). * * \param outputFd * File descriptor to output the log messages to * \param logMsgsToPrint * Number of log messages to print before returning * \return * The number of log messages processed;
| 2047 | * The number of log messages processed; a negative value indicates error |
| 2048 | */ |
| 2049 | int64_t |
| 2050 | Log::Decoder::decompressUnordered(FILE* outputFd) { |
| 2051 | bool success = internalDecompressUnordered(outputFd); |
| 2052 | return (success) ? logMsgsPrinted : -1; |
| 2053 | } |
| 2054 | |
| 2055 | }; /* NanoLogInternal */ |
nothing calls this directly
no outgoing calls
no test coverage detected