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

/libcore/luni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java270 * poll/offer, (argument "how" is NOW) return.
552 * Possible values for "how" argument in xfer method.
570 * @param how NOW, ASYNC, SYNC, or TIMED
575 private E xfer(E e, boolean haveData, int how, long nanos) { argument
608 if (how != NOW) { // No matches available
614 if (how != ASYNC)
615 return awaitMatch(s, pred, e, (how == TIMED), nanos);
/libcore/luni/src/main/java/android/system/
H A DOs.java439 public static void shutdown(FileDescriptor fd, int how) throws ErrnoException { Libcore.os.shutdown(fd, how); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java149 public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); } argument
H A DOs.java142 public void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
H A DPosix.java223 public native void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp688 // Count results so we know how to size the output array.
1409 static void Posix_shutdown(JNIEnv* env, jobject, jobject javaFd, jint how) { argument
1411 throwIfMinusOne(env, "shutdown", TEMP_FAILURE_RETRY(shutdown(fd, how)));

Completed in 119 milliseconds