Home
last modified time | relevance | path

Searched defs:dirFile (Results 1 – 1 of 1) sorted by relevance

/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/zip/
Dzip.go715 type dirFile struct { struct
716 filePath, slashPath string
717 info os.FileInfo
720 func (f dirFile) Path() string { return f.slashPath }
721 func (f dirFile) Lstat() (os.FileInfo, error) { return f.info, nil }
722 func (f dirFile) Open() (io.ReadCloser, error) { return os.Open(f.filePath) }