Searched refs:isRead (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | IoBridge.java | 590 …public static int recvfrom(boolean isRead, FileDescriptor fd, byte[] bytes, int byteOffset, int by… in recvfrom() argument 595 result = postRecvfrom(isRead, packet, srcAddress, result); in recvfrom() 597 result = maybeThrowAfterRecvfrom(isRead, isConnected, errnoException); in recvfrom() 602 …public static int recvfrom(boolean isRead, FileDescriptor fd, ByteBuffer buffer, int flags, Datagr… in recvfrom() argument 607 result = postRecvfrom(isRead, packet, srcAddress, result); in recvfrom() 609 result = maybeThrowAfterRecvfrom(isRead, isConnected, errnoException); in recvfrom() 614 …private static int postRecvfrom(boolean isRead, DatagramPacket packet, InetSocketAddress srcAddres… in postRecvfrom() argument 615 if (isRead && byteCount == 0) { in postRecvfrom() 630 …private static int maybeThrowAfterRecvfrom(boolean isRead, boolean isConnected, ErrnoException err… in maybeThrowAfterRecvfrom() argument 631 if (isRead) { in maybeThrowAfterRecvfrom()
|