type syscall.Timeval
26 uses
syscall (current package)
bpf_darwin.go#L106: func BpfTimeout(fd int) (*Timeval, error) {
bpf_darwin.go#L107: var tv Timeval
bpf_darwin.go#L116: func SetBpfTimeout(fd int, tv *Timeval) error {
syscall.go#L86: func (tv *Timeval) Unix() (sec int64, nsec int64) {
syscall.go#L96: func (tv *Timeval) Nano() int64 {
syscall_bsd.go#L515: func Utimes(path string, tv []Timeval) (err error) {
syscall_bsd.go#L519: return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_bsd.go#L537: tv := [2]Timeval{
syscall_bsd.go#L541: return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_bsd.go#L546: func Futimes(fd int, tv []Timeval) (err error) {
syscall_bsd.go#L550: return futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_darwin_amd64.go#L13: func setTimeval(sec, usec int64) Timeval {
syscall_darwin_amd64.go#L14: return Timeval{Sec: sec, Usec: int32(usec)}
syscall_unix.go#L338: func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) {
timestruct.go#L24: func TimevalToNsec(tv Timeval) int64 { return tv.Nano() }
timestruct.go#L27: func NsecToTimeval(nsec int64) Timeval {
zsyscall_darwin_amd64.go#L302: func utimes(path string, timeval *[2]Timeval) (err error) {
zsyscall_darwin_amd64.go#L322: func futimes(fd int, timeval *[2]Timeval) (err error) {
zsyscall_darwin_amd64.go#L403: func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
zsyscall_darwin_amd64.go#L1378: func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error) {
zsyscall_darwin_amd64.go#L1564: func Settimeofday(tp *Timeval) (err error) {
zsyscall_darwin_amd64.go#L1998: func Gettimeofday(tp *Timeval) (err error) {
ztypes_darwin_amd64.go#L28: type Timeval struct {
ztypes_darwin_amd64.go#L40: Utime Timeval
ztypes_darwin_amd64.go#L41: Stime Timeval
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |