Home
last modified time | relevance | path

Searched refs:received (Results 1 – 25 of 47) sorted by relevance

12

/libcore/ojluni/src/main/java/java/net/
DInet6AddressImpl.java270 byte[] received = new byte[packet.length]; in icmpEcho()
271 DatagramPacket receivedPacket = new DatagramPacket(received, packet.length); in icmpEcho()
273 .recvfrom(true, fd, received, 0, received.length, 0, receivedPacket, false); in icmpEcho()
278 && received[0] == expectedType in icmpEcho()
279 && received[4] == (byte) (icmpId >> 8) in icmpEcho()
280 && received[5] == (byte) icmpId) { in icmpEcho()
281 int receivedSequence = ((received[6] & 0xff) << 8) + (received[7] & 0xff); in icmpEcho()
DSocksSocketImpl.java120 int received = 0; in readSocksReply() local
121 while (received < len) { in readSocksReply()
124 …count = ((SocketInputStream)in).read(data, received, len - received, remainingMillis(deadlineMilli… in readSocksReply()
130 received += count; in readSocksReply()
132 return received; in readSocksReply()
/libcore/ojluni/src/test/java/net/InetSocketAddress/
DToString.java99 String received = InetSocketAddress.createUnresolved(host, port).toString(); in testCreateUnresolved() local
101 if (!string.equals(received)) { in testCreateUnresolved()
102 fail("Expected: " + string + " Received: " + received); in testCreateUnresolved()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DProcessTest.java78 String received = readAndCloseStream(p.getInputStream()); in test_getOutputStream() local
79 assertEquals(str1 + str2 + str3, received); in test_getOutputStream()
94 String received = readAndCloseStream(p.getInputStream()); in test_getErrorStream() local
95 assertEquals("", received); in test_getErrorStream()
/libcore/ojluni/src/main/
DLICENSE150 c) Accompany it with the information you received as to the offer to
152 for noncommercial distribution and only if you received the program in
174 your rights under this License. However, parties who have received copies, or
297 You should have received a copy of the GNU General Public License along
379 You should have received a copy of the GNU General Public License version
405 You should have received a copy of the GNU General Public License version
431 You should have received a copy of the GNU General Public License version
457 You should have received a copy of the GNU General Public License version
483 You should have received a copy of the GNU General Public License version
509 You should have received a copy of the GNU General Public License version
[all …]
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java346 int received = Os.recvfrom(clientFd, buffer, 0, null); in checkByteBufferPositions_sendto_recvfrom()
347 assertTrue(received > 0); in checkByteBufferPositions_sendto_recvfrom()
348 assertEquals(received, buffer.position()); in checkByteBufferPositions_sendto_recvfrom()
352 received = Os.recvfrom(clientFd, buffer2, 0, null); in checkByteBufferPositions_sendto_recvfrom()
353 assertTrue(received > 0); in checkByteBufferPositions_sendto_recvfrom()
354 assertEquals(received + 8, buffer.position()); in checkByteBufferPositions_sendto_recvfrom()
823 byte[] received = new byte[msg.length + 42];
825 assertEquals(len, Os.recvfrom(recvFd, received, 0, received.length, 0, from));
1167 byte[] received = new byte[4096];
1169 assertEquals(len, Os.recvfrom(fd, received, 0, received.length, 0, srcAddress));
[all …]
/libcore/ojluni/src/test/java/util/Properties/
DBug6609431.properties15 # You should have received a copy of the GNU General Public License version
/libcore/tools/checkstyle/
Dopenjdk-gplv2-plus-classpath-copyright.pattern20 \* You should have received a copy of the GNU General Public License version
Dopenjdk-gplv2-copyright.pattern18 \* You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/test/java/util/regex/
DGraphemeTestCases.txt15 # You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/main/resources/sun/util/logging/resources/
Dlogging_pt_BR.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_fr.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_zh_CN.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_de.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_es.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_zh_TW.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_ko.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_sv.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_ja.properties17 # You should have received a copy of the GNU General Public License version
Dlogging_it.properties17 # You should have received a copy of the GNU General Public License version
Dlogging.properties17 # You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/main/java/java/nio/charset/
Dexceptions17 # You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/main/resources/
Dcalendars.properties16 # You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/test/java/nio/Buffer/
DCopyDirect-X-Memory.java.template15 * You should have received a copy of the GNU General Public License version
/libcore/ojluni/src/main/resources/java/time/chrono/
Dhijrah-config-Hijrah-umalqura_islamic-umalqura.properties16 # You should have received a copy of the GNU General Public License version

12