HomeSort by relevance Sort by last modified time
    Searched full:waitstatus (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/syscall/
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_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...]
  /prebuilts/go/linux-x86/src/syscall/
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_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...]
  /external/ltp/testcases/kernel/syscalls/fork/
fork12.c 58 int forks, pid1, fork_errno, waitstatus; local
100 while (wait(&waitstatus) > 0) ;
116 int waitstatus; local
120 while (wait(&waitstatus) > 0) ;
fork07.c 205 int waitstatus; local
208 while (wait(&waitstatus) > 0) ;
  /hardware/interfaces/usb/1.0/vts/functional/
VtsHalUsbV1_0TargetTest.cpp 246 std::cv_status waitStatus = wait();
247 while (waitStatus == std::cv_status::no_timeout &&
249 waitStatus = wait();
251 EXPECT_EQ(std::cv_status::no_timeout, waitStatus);
293 std::cv_status waitStatus = wait();
294 while (waitStatus == std::cv_status::no_timeout &&
296 waitStatus = wait();
298 EXPECT_EQ(std::cv_status::no_timeout, waitStatus);
339 std::cv_status waitStatus = wait();
340 while (waitStatus == std::cv_status::no_timeout &
    [all...]
  /prebuilts/go/darwin-x86/src/os/
exec_posix.go 60 status syscall.WaitStatus // System-dependent status info.
89 status := p.Sys().(syscall.WaitStatus)
exec_unix.go 36 var status syscall.WaitStatus
  /prebuilts/go/linux-x86/src/os/
exec_posix.go 60 status syscall.WaitStatus // System-dependent status info.
89 status := p.Sys().(syscall.WaitStatus)
exec_unix.go 36 var status syscall.WaitStatus
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 83 * If head exists, its waitStatus is guaranteed not to be
210 int ws = node.waitStatus;
221 if (s == null || s.waitStatus > 0) {
224 if (p.waitStatus <= 0)
251 int ws = h.waitStatus;
280 * or was recorded (as h.waitStatus either before
282 * (note: this uses sign-check of waitStatus because
293 if (propagate > 0 || h == null || h.waitStatus < 0 ||
294 (h = head) == null || h.waitStatus < 0) {
317 while (pred.waitStatus > 0
    [all...]
AbstractQueuedSynchronizer.java 386 /** waitStatus value to indicate thread has cancelled. */
388 /** waitStatus value to indicate successor's thread needs unparking. */
390 /** waitStatus value to indicate thread is waiting on condition. */
393 * waitStatus value to indicate the next acquireShared should
432 volatile int waitStatus;
436 * for checking waitStatus. Assigned during enqueuing, and nulled
512 Node(int waitStatus) {
513 U.putInt(this, WAITSTATUS, waitStatus);
517 /** CASes waitStatus field. *
    [all...]
  /build/soong/ui/build/
proc_sync_test.go 176 if waitStatus, ok := exitError.Sys().(syscall.WaitStatus); ok {
177 exitStatus = waitStatus.ExitStatus()
  /build/soong/ui/logger/
logger_test.go 124 if e, ok := err.(*exec.ExitError); ok && e.Sys().(syscall.WaitStatus).ExitStatus() == 42 {
146 if e, ok := err.(*exec.ExitError); ok && e.Sys().(syscall.WaitStatus).ExitStatus() == 1 {
  /build/blueprint/gotestrunner/
gotestrunner.go 93 if status, ok := e.Sys().(syscall.WaitStatus); ok && status.Exited() {
  /external/boringssl/src/util/
diff_asm.go 50 if exitError, ok := err.(*exec.ExitError); ok && exitError.Sys().(syscall.WaitStatus).ExitStatus() == 1 {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
waitstatus.h 21 # error "Never include <bits/waitstatus.h> directly; use <sys/wait.h> instead."
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
waitstatus.h 21 # error "Never include <bits/waitstatus.h> directly; use <sys/wait.h> instead."
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationSmokeTests.cpp     [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/
syscall.a 144 ??&? ?|SFutimesat? ??f tv·4&?  Futimes?f?&? ImplementsGetwd(#  Getwd wd·1&? Getgroups gids·1&? 4Setgroups gids·2&? WaitStatus2Continuedjw·2CoreDumpj?ExitStatusj? Exitedj?"`j?BSignaledj?,StopSignalj?B' Stoppedj?6TrapCausej?  Wait4 pid·3jwstatus·4options·5 ? Rusage  Utimef Stimef Maxrss
    [all...]

Completed in 450 milliseconds

1 2 3 4