HomeSort by relevance Sort by last modified time
    Searched refs:Signal (Results 201 - 225 of 382) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libmojo/base/trace_event/
trace_event_android.cc 85 complete_event->Signal();
  /external/v8/src/heap/
page-parallel-job.h 171 on_finish_->Signal();
  /prebuilts/go/darwin-x86/src/runtime/
crash_unix_test.go 22 // sigquit is the signal to send to kill a hanging testdata program.
95 if err := cmd.Process.Signal(syscall.SIGQUIT); err != nil {
96 t.Fatalf("signal: %v", err)
169 } else if !ws.Signaled() || ws.Signal() != syscall.SIGTERM {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
205 // An extra number (exit code, signal causing a stop)
230 func (w WaitStatus) Signal() Signal {
231 sig := Signal(w & mask)
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 {
248 return Signal(w>>shift) & 0xFF
460 //sys Kill(pid int, signum Signal) (err error
    [all...]
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
77 // An extra number (exit code, signal causing a stop)
102 func (w WaitStatus) Signal() Signal {
103 sig := Signal(w & mask)
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 {
120 return Signal(w>>shift) & 0xFF
syscall_linux_test.go 14 "os/signal"
117 fmt.Fprintf(os.Stderr, "death signal parent error: %v\n", err)
125 c := make(chan os.Signal, 1)
126 signal.Notify(c, syscall.SIGUSR1)
  /prebuilts/go/linux-x86/src/runtime/
crash_unix_test.go 22 // sigquit is the signal to send to kill a hanging testdata program.
95 if err := cmd.Process.Signal(syscall.SIGQUIT); err != nil {
96 t.Fatalf("signal: %v", err)
169 } else if !ws.Signaled() || ws.Signal() != syscall.SIGTERM {
  /prebuilts/go/linux-x86/src/syscall/
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
205 // An extra number (exit code, signal causing a stop)
230 func (w WaitStatus) Signal() Signal {
231 sig := Signal(w & mask)
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 {
248 return Signal(w>>shift) & 0xFF
460 //sys Kill(pid int, signum Signal) (err error
    [all...]
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
77 // An extra number (exit code, signal causing a stop)
102 func (w WaitStatus) Signal() Signal {
103 sig := Signal(w & mask)
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 {
120 return Signal(w>>shift) & 0xFF
  /external/libchrome/base/message_loop/
message_loop_task_runner_unittest.cc 50 thread_sync_.Signal();
89 void UnblockTaskThread() { thread_sync_.Signal(); }
  /external/libunwind/doc/
unw_flush_cache.tex 39 \section{Thread and Signal Safety}
42 use from a signal handler.
unw_getcontext.tex 38 performance and does not, for example, save the signal mask.
45 \section{Thread and Signal Safety}
48 from a signal handler.
unw_step.tex 29 \section{Thread and Signal Safety}
32 address-space, this routine is also safe to use from a signal handler.
unw_get_fpreg.tex 29 stack-pointer). However, for signal frames (see
43 \section{Thread and Signal Safety}
46 from a signal handler.
unw_get_reg.tex 29 stack-pointer). However, for signal frames (see
44 \section{Thread and Signal Safety}
47 from a signal handler.
unw_init_local.tex 52 \section{Thread and Signal Safety}
55 signal handler.
unw_init_remote.tex 47 \section{Thread and Signal Safety}
51 a signal handler.
unw_set_caching_policy.tex 54 \section{Thread and Signal Safety}
57 to use from a signal handler.
unw_set_fpreg.tex 29 stack-pointer). However, for signal frames (see
43 \section{Thread and Signal Safety}
46 from a signal handler.
unw_set_reg.tex 29 stack-pointer). However, for signal frames (see
44 \section{Thread and Signal Safety}
47 from a signal handler.
  /external/libchrome/base/threading/
sequenced_worker_pool.cc 411 // Signal |has_work_| and increment |has_work_signal_count_|.
669 // Actually start the additional thread or signal an existing one now that
728 has_work_cv_.Signal();
821 // already get a signal for each new task, but it doesn't
921 can_shutdown_cv_.Signal();
933 has_work_cv_.Signal();
    [all...]
  /external/v8/src/profiler/
profile-generator.cc 570 current_profiles_semaphore_.Signal();
576 current_profiles_semaphore_.Signal();
582 current_profiles_semaphore_.Signal();
597 current_profiles_semaphore_.Signal();
636 current_profiles_semaphore_.Signal();
  /build/blueprint/gotestrunner/
gotestrunner.go 96 fmt.Fprintf(os.Stderr, "test got signal %s\n", status.Signal())
  /prebuilts/go/darwin-x86/src/os/
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func
  /prebuilts/go/linux-x86/src/os/
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func

Completed in 523 milliseconds

1 2 3 4 5 6 7 891011>>