HomeSort by relevance Sort by last modified time
    Searched defs:Signal (Results 1 - 25 of 67) sorted by null

1 2 3

  /device/google/cuttlefish_common/common/vsoc/lib/
single_sided_signal.h 24 // Signaling mechanism that allows threads to signal changes to shared
33 * Waits for a signal, assuming the the word at addr matches expected_state.
42 * Sends a signal to every thread in AwaitSignal() using the address in
45 static void Signal(std::atomic<uint32_t>* uaddr) {
  /frameworks/rs/
rsSignal.cpp 23 Signal::Signal() {
27 Signal::~Signal() {
32 bool Signal::init() {
35 ALOGE("Signal::init: mutex init failure: %s", strerror(status));
41 ALOGE("Signal::init: condition init failure: %s", strerror(status));
49 void Signal::set() {
52 ALOGE("Signal::set: error locking for set condition: %s", strerror(status));
60 ALOGE("Signal::set: error on set condition: %s", strerror(status))
    [all...]
rsSignal.h 26 class Signal {
28 Signal();
29 ~Signal();
  /frameworks/base/libs/hwui/thread/
Signal.h 27 class Signal {
29 explicit Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL)
31 ~Signal() {}
33 void signal() { function in class:android::uirenderer::Signal
38 mCondition.signal(mType);
  /external/libunwind/doc/
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_resume.tex 29 \Var{cp} was interrupted by a signal, then \Func{unw\_resume}() will
30 restore all registers as well as the signal mask. Attempting to call
67 \section{Thread and Signal Safety}
70 local address-space, this routine is also safe to use from a signal
unw_strerror.tex 28 \section{Thread and Signal Safety}
31 from a signal handler.
unw_flush_cache.tex 39 \section{Thread and Signal Safety}
42 use from a signal handler.
unw_get_accessors.tex 36 \section{Thread and Signal Safety}
39 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_proc_info.tex 90 \section{Thread and Signal Safety}
94 signal handler.
unw_get_proc_info_by_ip.tex 56 \section{Thread and Signal Safety}
60 safe to use from a signal handler.
unw_get_proc_name.tex 49 \section{Thread and Signal Safety}
53 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_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_is_fpreg.tex 31 \section{Thread and Signal Safety}
34 from a signal handler.
unw_is_signal_frame.tex 8 \begin{Name}{3}{unw\_is\_signal\_frame}{David Mosberger-Tang}{Programming Library}{unw\_is\_signal\_frame}unw\_is\_signal\_frame -- check if current frame is a signal frame
20 if the current frame identified by \Var{cp} is a signal frame, and a
21 value of 0 otherwise. For the purpose of this discussion, a signal
24 frames are normally created by the kernel when delivering a signal.
25 In a kernel-environment, a signal frame might, for example, correspond
28 Signal frames are somewhat unusual because the asynchronous nature of
35 positive value if the current frame is a signal frame, or 0 if it is
39 \section{Thread and Signal Safety}
42 from a signal handler.
48 whether or not the current frame is a signal frame
    [all...]
unw_regname.tex 30 \section{Thread and Signal Safety}
33 use from a signal handler.
unw_set_caching_policy.tex 54 \section{Thread and Signal Safety}
57 to use from a signal handler.
  /prebuilts/go/darwin-x86/src/sync/
cond.go 39 // Wait cannot return unless awoken by Broadcast or Signal.
60 // Signal wakes one goroutine waiting on c, if there is any.
64 func (c *Cond) Signal() {
  /prebuilts/go/linux-x86/src/sync/
cond.go 39 // Wait cannot return unless awoken by Broadcast or Signal.
60 // Signal wakes one goroutine waiting on c, if there is any.
64 func (c *Cond) Signal() {
  /frameworks/base/tests/JankBench/app/src/main/jni/
WorkerPool.cpp 30 WorkerPool::Signal::Signal() {
34 WorkerPool::Signal::~Signal() {
39 bool WorkerPool::Signal::init() {
56 void WorkerPool::Signal::set() {
78 bool WorkerPool::Signal::wait(uint64_t timeout) {
171 mLaunchSignals = new Signal[mCount];
  /external/drm_hwcomposer/
worker.h 39 void Signal() {
58 * wait for a signal before returning.
  /external/libchrome/base/synchronization/
condition_variable_posix.cc 134 void ConditionVariable::Signal() {

Completed in 242 milliseconds

1 2 3