Lines Matching refs:fh
58 fh := new(FileHeader)
59 fh.SetModTime(testTime)
60 outTime := fh.ModTime()
66 func testHeaderRoundTrip(fh *FileHeader, wantUncompressedSize uint32, wantUncompressedSize64 uint64…
67 fi := fh.FileInfo()
72 if got, want := fh2.Name, fh.Name; got != want {
81 if got, want := fh2.ModifiedTime, fh.ModifiedTime; got != want {
84 if got, want := fh2.ModifiedDate, fh.ModifiedDate; got != want {
88 if sysfh, ok := fi.Sys().(*FileHeader); !ok && sysfh != fh {
94 fh := &FileHeader{
100 testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t)
104 fh := &FileHeader{
110 testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t)