time.Time.unixSec (method)
9 uses
time (current package)
format.go#L1155: name, offset, _, _ := local.lookup(t.unixSec())
format.go#L1170: offset, ok := local.lookupName(zoneName, t.unixSec())
time.go#L176: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
time.go#L438: sec := t.unixSec()
time.go#L458: sec := t.unixSec()
time.go#L1117: name, offset, _, _ = t.loc.lookup(t.unixSec())
time.go#L1128: return t.unixSec()
time.go#L1138: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1215: } else if _, localoff, _, _ := Local.lookup(t.unixSec()); offset == localoff {