HomeSort by relevance Sort by last modified time
    Searched refs:Timespec (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl_386.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_nacl_amd64p32.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_nacl_arm.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_solaris_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_netbsd_386.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_netbsd_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_netbsd_arm.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_openbsd_386.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_openbsd_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_openbsd_arm.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
timestruct.go 9 // TimespecToNsec converts a Timespec value into a number of
11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
14 // and returns the corresponding Timespec value.
15 func NsecToTimespec(nsec int64) Timespec {
syscall_dragonfly_amd64.go 9 func setTimespec(sec, nsec int64) Timespec {
10 return Timespec{Sec: sec, Nsec: nsec}
syscall_freebsd_amd64.go 9 func setTimespec(sec, nsec int64) Timespec {
10 return Timespec{Sec: sec, Nsec: nsec}
syscall_freebsd_arm.go 9 func setTimespec(sec, nsec int64) Timespec {
10 return Timespec{Sec: sec, Nsec: int32(nsec)}
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl_386.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_nacl_amd64p32.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_nacl_arm.go 7 type Timespec struct {
17 func setTimespec(sec, nsec int64) Timespec {
18 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_solaris_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_netbsd_386.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_netbsd_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_netbsd_arm.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_openbsd_386.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
syscall_openbsd_amd64.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: nsec}
syscall_openbsd_arm.go 7 func setTimespec(sec, nsec int64) Timespec {
8 return Timespec{Sec: sec, Nsec: int32(nsec)}
timestruct.go 9 // TimespecToNsec converts a Timespec value into a number of
11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
14 // and returns the corresponding Timespec value.
15 func NsecToTimespec(nsec int64) Timespec {

Completed in 413 milliseconds

1 2 3 4 5 6 7 8 910