Searched defs:signal (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DCondition.java62 * <b>notEmpty.signal();</b>
76 * <b>notFull.signal();</b>
104 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
160 * <li>Some other thread invokes the {@link #signal} method for this
195 * method return in response to a signal. In that case the implementation
196 * must ensure that the signal is redirected to another waiting thread, if
211 * <li>Some other thread invokes the {@link #signal} method for this
248 * <li>Some other thread invokes the {@link #signal} method for this
314 * method return in response to a signal, or over indicating the elapse
316 * must ensure that the signal i
439 void signal(); method in interface:Condition
[all...]
H A DAbstractQueuedLongSynchronizer.java120 * inserted into a condition queue. Upon signal, the node is
153 * first indicate they need a signal,
174 * signal. So, most code doesn't need to check for particular
389 * If status is negative (i.e., possibly needing signal) try
417 * to calling unparkSuccessor of head if it needs signal.)
424 * signal. But if it does not, status is set to PROPAGATE to
461 * Try to signal next queued node if:
503 // or signal, so no further action is necessary.
515 // If successor needs signal, try to set pred's next-link
535 * Returns true if thread should block. This is the main signal
1686 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject
[all...]
H A DAbstractQueuedSynchronizer.java237 * except that it only requires a single {@code signal} to
259 * public void signal() { sync.releaseShared(1); }
350 * inserted into a condition queue. Upon signal, the node is
383 * first indicate they need a signal,
404 * signal. So, most code doesn't need to check for particular
619 * If status is negative (i.e., possibly needing signal) try
647 * to calling unparkSuccessor of head if it needs signal.)
654 * signal. But if it does not, status is set to PROPAGATE to
691 * Try to signal next queued node if:
733 // or signal, s
1914 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject
[all...]
/libcore/luni/src/main/java/android/system/
H A DOs.java244 public static void kill(int pid, int signal) throws ErrnoException { Libcore.os.kill(pid, signal); } argument
483 public static String strsignal(int signal) { return Libcore.os.strsignal(signal); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java101 public void kill(int pid, int signal) throws ErrnoException { os.kill(pid, signal); } argument
155 public String strsignal(int signal) { return os.strsignal(signal); } argument
H A DOs.java93 public void kill(int pid, int signal) throws ErrnoException; argument
148 public String strsignal(int signal); argument
H A DPosix.java95 public native void kill(int pid, int signal) throws ErrnoException; argument
199 public native String strsignal(int signal); argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp44 #include <signal.h>
83 * Used to retry networking system calls that can be interrupted with a signal. Unlike
85 * AsynchronousCloseMonitor::signalBlockedThreads(fd) is used to signal a close() or
119 * Used to retry system calls that can be interrupted with a signal. Unlike TEMP_FAILURE_RETRY, this
120 * also handles the case where AsynchronousCloseMonitor::signalBlockedThreads(fd) is used to signal
1457 static jstring Posix_strsignal(JNIEnv* env, jobject, jint signal) { argument
1458 return env->NewStringUTF(strsignal(signal));

Completed in 127 milliseconds