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

<<111213141516

  /external/libchrome/dbus/
property.cc 67 void PropertySet::ChangedReceived(Signal* signal) {
68 DCHECK(signal);
69 MessageReader reader(signal);
73 LOG(WARNING) << "Property changed signal has wrong parameters: "
74 << "expected interface name: " << signal->ToString();
82 LOG(WARNING) << "Property changed signal has wrong parameters: "
83 << "expected dictionary: " << signal->ToString();
87 LOG(WARNING) << "Property changed signal has wrong parameters: "
88 << "expected array to invalidate: " << signal->ToString()
    [all...]
  /hardware/qcom/media/sdm845/mm-video-v4l2/vidc/venc/inc/
omx_video_base.h 390 Signal signal; member in class:omx_video
  /prebuilts/go/darwin-x86/src/testing/
benchmark.go 207 // Signal that we're done whether we return normally
210 b.signal <- true
215 <-b.signal
251 <-b.signal
260 // Signal that we're done whether we return normally
263 b.signal <- true
423 signal: make(chan bool),
482 signal: make(chan bool),
631 signal: make(chan bool),
  /prebuilts/go/linux-x86/src/testing/
benchmark.go 207 // Signal that we're done whether we return normally
210 b.signal <- true
215 <-b.signal
251 <-b.signal
260 // Signal that we're done whether we return normally
263 b.signal <- true
423 signal: make(chan bool),
482 signal: make(chan bool),
631 signal: make(chan bool),
  /prebuilts/go/darwin-x86/src/syscall/
syscall_dragonfly.go 151 //sys Kill(pid int, signum Signal) (err error)
syscall_freebsd.go 164 //sys Kill(pid int, signum Signal) (err error)
syscall_netbsd.go 161 //sys Kill(pid int, signum Signal) (err error)
syscall_openbsd.go 140 //sys Kill(pid int, signum Signal) (err error)
ztypes_linux_mips64.go 526 Signal int64
ztypes_linux_mips64le.go 526 Signal int64
syscall_darwin.go 197 func Kill(pid int, signum Signal) (err error) { return kill(pid, int(signum), 1) }
  /prebuilts/go/linux-x86/src/syscall/
syscall_dragonfly.go 151 //sys Kill(pid int, signum Signal) (err error)
syscall_freebsd.go 164 //sys Kill(pid int, signum Signal) (err error)
syscall_netbsd.go 161 //sys Kill(pid int, signum Signal) (err error)
syscall_openbsd.go 140 //sys Kill(pid int, signum Signal) (err error)
ztypes_linux_mips64.go 526 Signal int64
ztypes_linux_mips64le.go 526 Signal int64
  /art/test/911-get-stack-trace/
expected.txt 256 Signal Catcher
357 Signal Catcher
592 Signal Catcher
  /prebuilts/go/darwin-x86/src/runtime/
signal_unix.go 31 // Stores the signal handlers registered before Go installed its own.
32 // These signal handlers will be invoked in cases where Go doesn't want to
33 // handle a particular signal (e.g., signal occurred on a non-Go thread).
36 // Signal forwarding is currently available only on Darwin and Linux.
39 // channels for synchronizing signal mask updates with the signal mask
64 // It's now OK for signal handlers to run.
82 // Even if we are not installing a signal handler,
100 // Even these signals can be fetched using the os/signal package
    [all...]
cpuprof.go 14 // The signal handler for the profiling clock tick adds a new stack trace
19 // log itself during the signal handler. This code cannot do that, because
21 // safe to use from within the signal handler. Instead, we split the log
22 // into two halves and let the signal handler fill one half while a goroutine
23 // is writing out the other half. When the signal handler fills its half, it
26 // The goroutine interacts with the signal handler by calling getprofile() to
30 // The state of this dance between the signal handler and the goroutine
33 // a new piece by calling notesleep(&p.wait). If the signal handler
44 // then the signal handler owns it and can change it to non-zero.
85 // Signal handler has filled log[toggle][:nlog]
    [all...]
crash_test.go 101 p.Signal(sigquit)
  /prebuilts/go/linux-x86/src/runtime/
signal_unix.go 31 // Stores the signal handlers registered before Go installed its own.
32 // These signal handlers will be invoked in cases where Go doesn't want to
33 // handle a particular signal (e.g., signal occurred on a non-Go thread).
36 // Signal forwarding is currently available only on Darwin and Linux.
39 // channels for synchronizing signal mask updates with the signal mask
64 // It's now OK for signal handlers to run.
82 // Even if we are not installing a signal handler,
100 // Even these signals can be fetched using the os/signal package
    [all...]
cpuprof.go 14 // The signal handler for the profiling clock tick adds a new stack trace
19 // log itself during the signal handler. This code cannot do that, because
21 // safe to use from within the signal handler. Instead, we split the log
22 // into two halves and let the signal handler fill one half while a goroutine
23 // is writing out the other half. When the signal handler fills its half, it
26 // The goroutine interacts with the signal handler by calling getprofile() to
30 // The state of this dance between the signal handler and the goroutine
33 // a new piece by calling notesleep(&p.wait). If the signal handler
44 // then the signal handler owns it and can change it to non-zero.
85 // Signal handler has filled log[toggle][:nlog]
    [all...]
crash_test.go 101 p.Signal(sigquit)
  /external/v8/src/
d8.cc     [all...]

Completed in 999 milliseconds

<<111213141516