Searched refs:isRead (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | IoBridge.java | 594 …public static int recvfrom(boolean isRead, FileDescriptor fd, byte[] bytes, int byteOffset, int by… in recvfrom() argument 599 result = postRecvfrom(isRead, packet, srcAddress, result); in recvfrom() 601 result = maybeThrowAfterRecvfrom(isRead, isConnected, errnoException); in recvfrom() 606 …public static int recvfrom(boolean isRead, FileDescriptor fd, ByteBuffer buffer, int flags, Datagr… in recvfrom() argument 611 result = postRecvfrom(isRead, packet, srcAddress, result); in recvfrom() 613 result = maybeThrowAfterRecvfrom(isRead, isConnected, errnoException); in recvfrom() 618 …private static int postRecvfrom(boolean isRead, DatagramPacket packet, InetSocketAddress srcAddres… in postRecvfrom() argument 619 if (isRead && byteCount == 0) { in postRecvfrom() 634 …private static int maybeThrowAfterRecvfrom(boolean isRead, boolean isConnected, ErrnoException err… in maybeThrowAfterRecvfrom() argument 635 if (isRead) { in maybeThrowAfterRecvfrom()
|