(v []uint64)
| 18 | ) |
| 19 | |
| 20 | func parseReplyCache(v []uint64) (ReplyCache, error) { |
| 21 | if len(v) != 3 { |
| 22 | return ReplyCache{}, fmt.Errorf("invalid ReplyCache line %v", v) |
| 23 | } |
| 24 | |
| 25 | return ReplyCache{ |
| 26 | Hits: v[0], |
| 27 | Misses: v[1], |
| 28 | NoCache: v[2], |
| 29 | }, nil |
| 30 | } |
| 31 | |
| 32 | func parseFileHandles(v []uint64) (FileHandles, error) { |
| 33 | if len(v) != 5 { |
no outgoing calls
no test coverage detected
searching dependent graphs…