HomeSort by relevance Sort by last modified time
    Searched defs:WaitStatus (Results 1 - 10 of 10) sorted by null

  /prebuilts/go/darwin-x86/src/syscall/
syscall_bsd.go 80 type WaitStatus uint32
91 func (w WaitStatus) Exited() bool { return w&mask == exited }
93 func (w WaitStatus) ExitStatus() int {
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
102 func (w WaitStatus) Signal() Signal {
110 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
116 func (w WaitStatus) StopSignal() Signal {
123 func (w WaitStatus) TrapCause() int { return -1
    [all...]
syscall_solaris.go 208 type WaitStatus uint32
219 func (w WaitStatus) Exited() bool { return w&mask == exited }
221 func (w WaitStatus) ExitStatus() int {
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
230 func (w WaitStatus) Signal() Signal {
238 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
244 func (w WaitStatus) StopSignal() Signal {
251 func (w WaitStatus) TrapCause() int { return -1
    [all...]
syscall_linux.go 193 type WaitStatus uint32
212 func (w WaitStatus) Exited() bool { return w&mask == exited }
214 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
216 func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
218 func (w WaitStatus) Continued() bool { return w == 0xFFFF }
220 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
222 func (w WaitStatus) ExitStatus() int {
229 func (w WaitStatus) Signal() Signal {
236 func (w WaitStatus) StopSignal() Signal {
243 func (w WaitStatus) TrapCause() int
    [all...]
syscall_nacl.go 226 type WaitStatus uint32
228 func (w WaitStatus) Exited() bool { return false }
229 func (w WaitStatus) ExitStatus() int { return 0 }
230 func (w WaitStatus) Signaled() bool { return false }
231 func (w WaitStatus) Signal() Signal { return 0 }
232 func (w WaitStatus) CoreDump() bool { return false }
233 func (w WaitStatus) Stopped() bool { return false }
234 func (w WaitStatus) Continued() bool { return false }
235 func (w WaitStatus) StopSignal() Signal { return 0 }
236 func (w WaitStatus) TrapCause() int { return 0
    [all...]
syscall_windows.go 840 type WaitStatus struct {
844 func (w WaitStatus) Exited() bool { return true }
846 func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }
848 func (w WaitStatus) Signal() Signal { return -1 }
850 func (w WaitStatus) CoreDump() bool { return false }
852 func (w WaitStatus) Stopped() bool { return false }
854 func (w WaitStatus) Continued() bool { return false }
856 func (w WaitStatus) StopSignal() Signal { return -1 }
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_bsd.go 80 type WaitStatus uint32
91 func (w WaitStatus) Exited() bool { return w&mask == exited }
93 func (w WaitStatus) ExitStatus() int {
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
102 func (w WaitStatus) Signal() Signal {
110 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
116 func (w WaitStatus) StopSignal() Signal {
123 func (w WaitStatus) TrapCause() int { return -1
    [all...]
syscall_solaris.go 208 type WaitStatus uint32
219 func (w WaitStatus) Exited() bool { return w&mask == exited }
221 func (w WaitStatus) ExitStatus() int {
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
230 func (w WaitStatus) Signal() Signal {
238 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
244 func (w WaitStatus) StopSignal() Signal {
251 func (w WaitStatus) TrapCause() int { return -1
    [all...]
syscall_linux.go 193 type WaitStatus uint32
212 func (w WaitStatus) Exited() bool { return w&mask == exited }
214 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
216 func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
218 func (w WaitStatus) Continued() bool { return w == 0xFFFF }
220 func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
222 func (w WaitStatus) ExitStatus() int {
229 func (w WaitStatus) Signal() Signal {
236 func (w WaitStatus) StopSignal() Signal {
243 func (w WaitStatus) TrapCause() int
    [all...]
syscall_nacl.go 226 type WaitStatus uint32
228 func (w WaitStatus) Exited() bool { return false }
229 func (w WaitStatus) ExitStatus() int { return 0 }
230 func (w WaitStatus) Signaled() bool { return false }
231 func (w WaitStatus) Signal() Signal { return 0 }
232 func (w WaitStatus) CoreDump() bool { return false }
233 func (w WaitStatus) Stopped() bool { return false }
234 func (w WaitStatus) Continued() bool { return false }
235 func (w WaitStatus) StopSignal() Signal { return 0 }
236 func (w WaitStatus) TrapCause() int { return 0
    [all...]
syscall_windows.go 840 type WaitStatus struct {
844 func (w WaitStatus) Exited() bool { return true }
846 func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }
848 func (w WaitStatus) Signal() Signal { return -1 }
850 func (w WaitStatus) CoreDump() bool { return false }
852 func (w WaitStatus) Stopped() bool { return false }
854 func (w WaitStatus) Continued() bool { return false }
856 func (w WaitStatus) StopSignal() Signal { return -1 }
    [all...]

Completed in 320 milliseconds