| 33 | ) |
| 34 | |
| 35 | type LogStatStore interface { |
| 36 | Receiver() string |
| 37 | String() string |
| 38 | WriteStdLog(from int, buf []byte, eof bool) (int, error) |
| 39 | WriteFunctionLog(log string) error |
| 40 | WriteFunctionReportLog(log string, params *reportParameters) error |
| 41 | SetMemUsed(used int64) |
| 42 | LogFile() string |
| 43 | MemUsed() int64 |
| 44 | LogDone(set bool) bool |
| 45 | Close() (string, error) |
| 46 | Wait() |
| 47 | } |
| 48 | |
| 49 | type bits uint8 |
| 50 |
no outgoing calls
no test coverage detected