HomeSort by relevance Sort by last modified time
    Searched defs:SIGNAL (Results 1 - 4 of 4) sorted by null

  /frameworks/base/include/surfaceflinger/
ISurfaceComposer.h 113 /* signal that we're done booting.
129 /* Signal surfaceflinger that there might be some work to do
132 virtual void signal() const = 0;
152 SIGNAL,
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 121 * inserted into a condition queue. Upon signal, the node is
139 static final int SIGNAL = -1;
150 * SIGNAL: The successor of this node is (or will soon be)
154 * first indicate they need a signal,
175 * signal. So, most code doesn't need to check for particular
390 * If status is negative (i.e., possibly needing signal) try
416 * Release action for shared mode -- signal successor and ensure
418 * to calling unparkSuccessor of head if it needs signal.)
425 * signal. But if it does not, status is set to PROPAGATE to
436 if (ws == Node.SIGNAL) {
1687 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject
    [all...]
AbstractQueuedSynchronizer.java 231 * except that it only requires a single <tt>signal</tt> to
253 * public void signal() { sync.releaseShared(1); }
345 * inserted into a condition queue. Upon signal, the node is
363 static final int SIGNAL = -1;
374 * SIGNAL: The successor of this node is (or will soon be)
378 * first indicate they need a signal,
399 * signal. So, most code doesn't need to check for particular
614 * If status is negative (i.e., possibly needing signal) try
640 * Release action for shared mode -- signal successor and ensure
642 * to calling unparkSuccessor of head if it needs signal.
1909 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject
    [all...]
  /external/ppp/pppd/
main.c 76 #include <signal.h>
615 new_phase(PHASE_DORMANT); /* allow signal to end holdoff */
673 info("Terminating on signal %d", got_sigterm);
691 * setup_signals - initialize signal handling.
699 * Compute mask of all interesting signals and install signal handlers
700 * for each. Only one signal handler may be active at a time. Therefore,
710 #define SIGNAL(s, handler) do { \
713 fatal("Couldn't establish signal handler (%d): %m", s); \
718 SIGNAL(SIGHUP, hup); /* Hangup */
719 SIGNAL(SIGINT, term); /* Interrupt *
    [all...]

Completed in 1010 milliseconds