MCPcopy
hub / github.com/Velocidex/velociraptor / PagedReader

Struct PagedReader

utils/paged_reader.go:38–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38type PagedReader struct {
39 mu sync.Mutex
40
41 reader io.ReaderAt
42 pagesize int64
43 lru *LRU
44
45 // The size of the file
46 size int64
47
48 freelist *FreeList
49
50 Hits int64
51 Miss int64
52}
53
54func (self *PagedReader) SetSize(size int64) {
55 self.mu.Lock()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected