├── .github └── workflows │ └── go.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── cmd └── prefetch.go ├── conversion.spec.yaml ├── debug.go ├── file_metrics.go ├── fixtures ├── CALC.EXE-3FBEF7FD.pf.golden ├── LIVECOMM.EXE-D546E475.pf.golden ├── MSMSGS.EXE-2B6052DE.pf.golden └── PING.EXE-B29F6629.pf.golden ├── go.mod ├── go.sum ├── headers.go ├── helpers.go ├── lzxpress.go ├── lzxpress_default.go ├── lzxpress_test.go ├── lzxpress_windows.go ├── model.go ├── prefetch.go ├── prefetch_gen.go └── profile_vtypes.json /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/README.md -------------------------------------------------------------------------------- /cmd/prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/cmd/prefetch.go -------------------------------------------------------------------------------- /conversion.spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/conversion.spec.yaml -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/debug.go -------------------------------------------------------------------------------- /file_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/file_metrics.go -------------------------------------------------------------------------------- /fixtures/CALC.EXE-3FBEF7FD.pf.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/fixtures/CALC.EXE-3FBEF7FD.pf.golden -------------------------------------------------------------------------------- /fixtures/LIVECOMM.EXE-D546E475.pf.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/fixtures/LIVECOMM.EXE-D546E475.pf.golden -------------------------------------------------------------------------------- /fixtures/MSMSGS.EXE-2B6052DE.pf.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/fixtures/MSMSGS.EXE-2B6052DE.pf.golden -------------------------------------------------------------------------------- /fixtures/PING.EXE-B29F6629.pf.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/fixtures/PING.EXE-B29F6629.pf.golden -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/go.sum -------------------------------------------------------------------------------- /headers.go: -------------------------------------------------------------------------------- 1 | package prefetch 2 | -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/helpers.go -------------------------------------------------------------------------------- /lzxpress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/lzxpress.go -------------------------------------------------------------------------------- /lzxpress_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/lzxpress_default.go -------------------------------------------------------------------------------- /lzxpress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/lzxpress_test.go -------------------------------------------------------------------------------- /lzxpress_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/lzxpress_windows.go -------------------------------------------------------------------------------- /model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/model.go -------------------------------------------------------------------------------- /prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/prefetch.go -------------------------------------------------------------------------------- /prefetch_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/prefetch_gen.go -------------------------------------------------------------------------------- /profile_vtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Velocidex/go-prefetch/HEAD/profile_vtypes.json --------------------------------------------------------------------------------