Searched defs:how (Results 1 - 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodTypeForm.java310 static Class<?> canonicalize(Class<?> t, int how) { argument
315 switch (how) {
326 switch (how) {
334 switch (how) {
362 static Class<?>[] canonicalizeAll(Class<?>[] ts, int how) { argument
365 Class<?> c = canonicalize(ts[i], how);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java302 * poll/offer, (argument "how" is NOW) return.
582 * Possible values for "how" argument in xfer method.
594 * @param how NOW, ASYNC, SYNC, or TIMED
599 private E xfer(E e, boolean haveData, int how, long nanos) { argument
633 if (how != NOW) { // No matches available
639 if (how != ASYNC)
640 return awaitMatch(s, pred, e, (how == TIMED), nanos);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNet.java480 static native void shutdown(FileDescriptor fd, int how) throws IOException; argument
/libcore/ojluni/src/main/native/
H A DNet.c746 int how = (jhow == sun_nio_ch_Net_SHUT_RD) ? SHUT_RD : local
748 if ((shutdown(fdval(env, fdo), how) < 0) && (errno != ENOTCONN))
/libcore/luni/src/main/java/android/system/
H A DOs.java544 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.java177 public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); } argument
H A DLinux.java251 public native void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
H A DOs.java164 public void shutdown(FileDescriptor fd, int how) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1272 // Count results so we know how to size the output array.
1532 // Count results so we know how to size the output array.
1902 // We got EINTR. Work out how much of the original timeout is still left.
2285 static void Linux_shutdown(JNIEnv* env, jobject, jobject javaFd, jint how) { argument
2287 throwIfMinusOne(env, "shutdown", TEMP_FAILURE_RETRY(shutdown(fd, how)));

Completed in 213 milliseconds