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

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/net/
fd_io_plan9.go 47 // interrupt it. We ignore the "hangup" signal,
48 // so the signal does not take down the entire
67 var hangupNote os.Signal = syscall.Note("hangup")
81 proc.Signal(hangupNote)
91 // ignore and unignore the "hangup" signal received by the process.
  /prebuilts/go/darwin-x86/src/os/
exec_unix.go 28 // so that Process.signal will not send a signal.
31 // active call to the signal method to complete.
55 func (p *Process) signal(sig Signal) error { func
67 s, ok := sig.(syscall.Signal)
69 return errors.New("os: unsupported signal type")
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
sync_test.go 22 cond.Signal()
44 cond.Signal()
  /prebuilts/go/linux-x86/src/net/
fd_io_plan9.go 47 // interrupt it. We ignore the "hangup" signal,
48 // so the signal does not take down the entire
67 var hangupNote os.Signal = syscall.Note("hangup")
81 proc.Signal(hangupNote)
91 // ignore and unignore the "hangup" signal received by the process.
  /prebuilts/go/linux-x86/src/os/
exec_unix.go 28 // so that Process.signal will not send a signal.
31 // active call to the signal method to complete.
55 func (p *Process) signal(sig Signal) error { func
67 s, ok := sig.(syscall.Signal)
69 return errors.New("os: unsupported signal type")
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
sync_test.go 22 cond.Signal()
44 cond.Signal()
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 235 // crash recovery context, and install signal handlers to invoke HandleCrash on
238 // This implementation does not to attempt to chain signal handlers in any
239 // reliable fashion -- if we get a signal outside of a crash recovery context we
240 // simply disable crash recovery and raise the signal again.
242 #include <signal.h>
249 static void CrashRecoverySignalHandler(int Signal) {
255 // signal on a thread we didn't expect it on, the application got a signal
259 // Disable crash recovery and raise the signal again. The assumption here is
265 raise(Signal);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 218 // crash recovery context, and install signal handlers to invoke HandleCrash on
221 // This implementation does not to attempt to chain signal handlers in any
222 // reliable fashion -- if we get a signal outside of a crash recovery context we
223 // simply disable crash recovery and raise the signal again.
225 #include <signal.h>
231 static void CrashRecoverySignalHandler(int Signal) {
237 // signal on a thread we didn't expect it on, the application got a signal
241 // Disable crash recovery and raise the signal again. The assumption here is
247 raise(Signal);
    [all...]
  /prebuilts/go/darwin-x86/src/io/
pipe.go 53 p.wwait.Signal()
77 p.rwait.Signal()
104 p.rwait.Signal()
105 p.wwait.Signal()
115 p.rwait.Signal()
116 p.wwait.Signal()
  /prebuilts/go/darwin-x86/src/syscall/
syscall_unix.go 145 // A Signal is a number describing a process signal.
146 // It implements the os.Signal interface.
147 type Signal int
149 func (s Signal) Signal() {}
151 func (s Signal) String() string {
158 return "signal " + itoa(int(s))
ztypes_windows.go 51 SIGHUP = Signal(0x1)
52 SIGINT = Signal(0x2)
53 SIGQUIT = Signal(0x3)
54 SIGILL = Signal(0x4)
55 SIGTRAP = Signal(0x5)
56 SIGABRT = Signal(0x6)
57 SIGBUS = Signal(0x7)
58 SIGFPE = Signal(0x8)
59 SIGKILL = Signal(0x9)
60 SIGSEGV = Signal(0xb
    [all...]
  /prebuilts/go/linux-x86/src/io/
pipe.go 53 p.wwait.Signal()
77 p.rwait.Signal()
104 p.rwait.Signal()
105 p.wwait.Signal()
115 p.rwait.Signal()
116 p.wwait.Signal()
  /prebuilts/go/linux-x86/src/syscall/
syscall_unix.go 145 // A Signal is a number describing a process signal.
146 // It implements the os.Signal interface.
147 type Signal int
149 func (s Signal) Signal() {}
151 func (s Signal) String() string {
158 return "signal " + itoa(int(s))
ztypes_windows.go 51 SIGHUP = Signal(0x1)
52 SIGINT = Signal(0x2)
53 SIGQUIT = Signal(0x3)
54 SIGILL = Signal(0x4)
55 SIGTRAP = Signal(0x5)
56 SIGABRT = Signal(0x6)
57 SIGBUS = Signal(0x7)
58 SIGFPE = Signal(0x8)
59 SIGKILL = Signal(0x9)
60 SIGSEGV = Signal(0xb
    [all...]
  /external/libchrome/base/memory/
weak_ptr_unittest.cc 141 completion->Signal();
149 completion->Signal();
156 completion->Signal();
161 completion->Signal();
169 completion->Signal();
180 completion->Signal();
185 completion->Signal();
  /external/libchrome/dbus/
object_proxy.cc 36 // The path of D-Bus Object sending NameOwnerChanged signal.
186 // ConnectToSignalInternal directly otherwise we might miss a signal
401 "type='signal',interface='org.freedesktop.DBus',"
412 // that's the case, we'll get the name owner via NameOwnerChanged signal,
430 // Add a match rule so the signal goes through HandleMessage().
432 base::StringPrintf("type='signal', interface='%s', path='%s'",
443 if (!ConnectToNameOwnerChangedSignal()) { // Failed to connect to the signal.
470 // reference so we can use it in Signal.
472 std::unique_ptr<Signal> signal(Signal::FromRawMessage(raw_message))
    [all...]
  /external/libchrome/base/synchronization/
condition_variable_unittest.cc 86 bool allow_help_requests() const; // Workers can signal more workers.
145 bool allow_help_requests_; // Workers can signal more workers.
295 queue.work_is_available()->Signal(); // But each worker can signal another.
340 queue.work_is_available()->Broadcast(); // Signal all threads.
361 queue.work_is_available()->Signal(); // But each worker can signal another.
461 queue.work_is_available()->Signal(); // Start up one thread.
474 // With Signal(), every thread should have participated.
552 no_more_tasks_.Signal();
    [all...]
condition_variable_posix.cc 132 void ConditionVariable::Signal() {
  /external/libchrome/base/threading/
platform_thread_unittest.cc 33 void ThreadMain() override { run_event_.Signal(); }
129 termination_ready_.Signal();
149 void MarkForTermination() { terminate_thread_.Signal(); }
  /build/soong/ui/build/
signal.go 19 "os/signal"
27 // SetupSignals sets up signal handling to ensure all of our subprocesses are killed and that
31 // same time we do. Most of the time this means we just need to ignore the signal and we'll
32 // just see errors from all of our subprocesses. But in case that fails, when we get a signal:
42 signals := make(chan os.Signal, 5)
43 signal.Notify(signals, os.Interrupt, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM)
47 func handleSignals(signals chan os.Signal, log logger.Logger, cancel, cleanup func()) {
74 log.Panicln("Got signal, but timed out exiting...")
81 log.Println("Got signal:", s)
83 // Another signal triggers our next timeout handler earl
    [all...]
  /device/linaro/bootloader/edk2/StdLib/
StdLib.dsc 119 StdLib/LibC/Signal/Signal.inf
StdLib.inc 41 LibSignal|StdLib/LibC/Signal/Signal.inf
  /external/drm_hwcomposer/
vsyncworker.cpp 64 Signal();
  /external/libchrome/base/mac/
mach_port_broker_unittest.cc 55 event_.Signal();
  /external/webrtc/webrtc/sound/
pulseaudiosoundsystem.h 162 void Signal();

Completed in 1261 milliseconds

1 2 3 4 5 67 8 91011>>