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

1 2

  /frameworks/rs/
rsSignal.cpp 23 Signal::Signal() {
27 Signal::~Signal() {
32 bool Signal::init() {
49 void Signal::set() {
71 bool Signal::wait(uint64_t timeout) {
rsSignal.h 26 class Signal {
28 Signal();
29 ~Signal();
35 // returns true if the signal occured
  /frameworks/base/libs/hwui/thread/
Signal.h 27 class Signal {
29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
30 ~Signal() { }
32 void signal() { function in class:android::uirenderer::Signal
35 mCondition.signal(mType);
  /external/chromium/base/synchronization/
condition_variable_posix.cc 72 void ConditionVariable::Signal() {
waitable_event_win.cc 41 void WaitableEvent::Signal() {
condition_variable_win.cc 47 // Default to "wait forever" timing, which means have to get a Signal()
66 // Minimize spurious signal creation window by recycling asap.
73 // Broadcast() is guaranteed to signal all threads that were waiting (i.e., had
91 // Signal() will select one of the waiting threads, and signal it (signal its
92 // cv_event). For better performance we signal the thread that went to sleep
95 void ConditionVariable::Signal() {
100 return; // No one to signal.
137 // waiting_list_. If it was selected by Broadcast() or Signal(), then it i
    [all...]
waitable_event_posix.cc 13 // support cross-process events (where one process can signal an event which
20 // condition variable to signal.
49 void WaitableEvent::Signal() {
188 // of locking order), however, in between the two a signal could be fired
190 // signal would be lost on an auto-reset WaitableEvent. Thus we call
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 141 @brief Signal operation
146 @return One of the android error codes based on semaphore signal operation
149 status_t Semaphore::Signal()
216 ///Wait for the timeout or signal and return the result based on whichever event occurred first
222 Signal();
  /external/v8/test/cctest/
test-thread-termination.cc 36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) {
37 semaphore->Signal();
185 v8::Handle<v8::ObjectTemplate> global = CreateGlobalTemplate(Signal, DoLoop);
209 CreateGlobalTemplate(Signal, DoLoop);
  /frameworks/compile/mclinker/include/mcld/Fragment/
FGNode.h 33 typedef Relocation* Signal;
43 typedef std::vector<Signal> SignalListType;
52 void addSignal(Signal pSignal);
FragmentGraph.h 40 typedef FGNode::Signal Signal;
60 bool connect(Signal pSignal, Slot pSlot);
  /external/chromium/base/
timer_unittest.cc 165 void Signal() {
180 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
195 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
229 TimeDelta::FromMilliseconds(50), &target, &DelayTimerTarget::Signal);
250 void Signal() {
264 &DelayTimerFatalTarget::Signal);
  /external/chromium/chrome/common/deprecated/
event_sys-inl.h 82 void Signal() {
189 callback_waiters_->Signal();
  /external/chromium/net/base/
mock_host_resolver.cc 279 void WaitingHostResolverProc::Signal() {
280 event_.Signal();
host_resolver_impl_unittest.cc 84 void Signal() {
85 event_.Signal();
365 resolver_proc->Signal();
551 // blocked, these should all pile up until we signal it.
560 resolver_proc->Signal();
602 // blocked, these should all pile up until we signal it.
617 resolver_proc->Signal();
689 // blocked, these should all pile up until we signal it.
700 resolver_proc->Signal();
746 // blocked, these should all pile up until we signal it
    [all...]
  /external/valgrind/unittest/
thread_wrappers_win.h 181 void Signal() {
thread_wrappers_pthread.h 230 void Signal() { CHECK(0 == pthread_cond_signal(&cv_)); }
  /external/v8/src/
platform-nullos.cc 453 virtual void Signal() {
platform-cygwin.cc 195 // Redirect to std abort to signal abnormal program termination.
539 virtual void Signal() { sem_post(&sem_); }
549 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
587 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
platform-freebsd.cc 33 #include <signal.h>
199 // Redirect to std abort to signal abnormal program termination.
612 virtual void Signal() { sem_post(&sem_); }
622 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
651 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
678 static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
680 if (signal != SIGPROF) return;
737 // Install a signal handler.
745 // Start a thread that sends SIGPROF signal to VM threads.
761 // Restore the old signal handler
    [all...]
platform-macos.cc 42 #include <signal.h>
185 // Redirect to std abort to signal abnormal program termination
709 void Signal() { semaphore_signal(semaphore_); }
platform-solaris.cc 47 #include <signal.h> // sigemptyset(), etc
211 // Redirect to std abort to signal abnormal program termination.
595 virtual void Signal() { sem_post(&sem_); }
605 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
656 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
670 static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
672 if (signal != SIGPROF) return;
747 // Start a thread that will send SIGPROF signal to VM threads,
831 // occuring during signal delivery.
  /external/chromium/chrome/browser/
browser_process_impl.cc 291 static void Signal(base::WaitableEvent* event) {
292 event->Signal();
324 shutdown_event_->Signal();
349 NewRunnableFunction(Signal, &done_writing));
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc 40 #include <signal.h>
275 // other end is closed will result in a SIGPIPE signal being raised to
318 // pretend it is blocking, and then signal close, so that simplifying
537 virtual void Signal() {
584 // non-trivial things with a POSIX signal in an event-driven program (until
596 // Returns true if the given signal number is set.
606 // Clears the given signal number.
614 // Returns the file descriptor to monitor for signal events.
619 // This is called directly from our real signal handler, so it must be
620 // signal-handler-safe. That means it cannot assume anything about th
    [all...]
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 195 signal_at_unlock_ = true; // Always signal at Unlock to make
288 void Signal() { CHECK(0 == pthread_cond_signal(&cv_)); }

Completed in 1144 milliseconds

1 2