Searched refs:how (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java269 * poll/offer, (argument "how" is NOW) return.
551 * Possible values for "how" argument in xfer method.
569 * @param how NOW, ASYNC, SYNC, or TIMED
574 private E xfer(E e, boolean haveData, int how, long nanos) { argument
607 if (how != NOW) { // No matches available
613 if (how != ASYNC)
614 return awaitMatch(s, pred, e, (how == TIMED), nanos);
/libcore/luni/src/main/java/libcore/io/
H A DOs.java152 public void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
H A DForwardingOs.java159 public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); } argument
H A DPosix.java236 public native void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java480 public static void shutdown(FileDescriptor fd, int how) throws ErrnoException { Libcore.os.shutdown(fd, how); } argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp867 // Count results so we know how to size the output array.
1309 // We got EINTR. Work out how much of the original timeout is still left.
1727 static void Posix_shutdown(JNIEnv* env, jobject, jobject javaFd, jint how) { argument
1729 throwIfMinusOne(env, "shutdown", TEMP_FAILURE_RETRY(shutdown(fd, how)));

Completed in 1800 milliseconds