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

/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DCondition.java63 * <b>notEmpty.signal();</b>
77 * <b>notFull.signal();</b>
105 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
161 * <li>Some other thread invokes the {@link #signal} method for this
196 * method return in response to a signal. In that case the implementation
197 * must ensure that the signal is redirected to another waiting thread, if
212 * <li>Some other thread invokes the {@link #signal} method for this
249 * <li>Some other thread invokes the {@link #signal} method for this
315 * method return in response to a signal, or over indicating the elapse
317 * must ensure that the signal i
440 void signal(); method in interface:Condition
[all...]
H A DAbstractQueuedLongSynchronizer.java121 * inserted into a condition queue. Upon signal, the node is
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
418 * to calling unparkSuccessor of head if it needs signal.)
425 * signal. But if it does not, status is set to PROPAGATE to
462 * Try to signal next queued node if:
504 // or signal, so no further action is necessary.
516 // If successor needs signal, try to set pred's next-link
536 * Returns true if thread should block. This is the main signal
1687 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject
[all...]
H A DAbstractQueuedSynchronizer.java234 * except that it only requires a single {@code signal} to
256 * public void signal() { sync.releaseShared(1); }
347 * inserted into a condition queue. Upon signal, the node is
380 * first indicate they need a signal,
401 * signal. So, most code doesn't need to check for particular
616 * If status is negative (i.e., possibly needing signal) try
644 * to calling unparkSuccessor of head if it needs signal.)
651 * signal. But if it does not, status is set to PROPAGATE to
688 * Try to signal next queued node if:
730 // or signal, s
1911 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject
[all...]
/libcore/luni/src/main/java/android/system/
H A DOs.java241 public static void kill(int pid, int signal) throws ErrnoException { Libcore.os.kill(pid, signal); } argument
510 public static String strsignal(int signal) { return Libcore.os.strsignal(signal); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java105 public void kill(int pid, int signal) throws ErrnoException { os.kill(pid, signal); } argument
165 public String strsignal(int signal) { return os.strsignal(signal); } argument
H A DOs.java97 public void kill(int pid, int signal) throws ErrnoException; argument
158 public String strsignal(int signal); argument
H A DPosix.java99 public native void kill(int pid, int signal) throws ErrnoException; argument
242 public native String strsignal(int signal); argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp44 #include <signal.h>
130 * Used to retry networking system calls that can be interrupted with a signal. Unlike
132 * AsynchronousCloseMonitor::signalBlockedThreads(fd) is used to signal a close() or
166 * Used to retry system calls that can be interrupted with a signal. Unlike TEMP_FAILURE_RETRY, this
167 * also handles the case where AsynchronousCloseMonitor::signalBlockedThreads(fd) is used to signal
1773 static jstring Posix_strsignal(JNIEnv* env, jobject, jint signal) { argument
1774 return env->NewStringUTF(strsignal(signal));

Completed in 1132 milliseconds