Home
last modified time | relevance | path

Searched refs:readContent (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DBerInputStream.java218 readContent(); in readBitString()
252 readContent(); in readEnumerated()
281 readContent(); in readBoolean()
298 readContent(); in readGeneralizedTime()
372 readContent(); in readUTCTime()
436 readContent(); in readInteger()
455 readContent(); in readOctetString()
482 readContent(); in readOID()
647 readContent(); in readString()
756 public void readContent() throws IOException { in readContent() method in BerInputStream
DASN1Any.java74 in.readContent(); in decode()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSocketChannelTest.java1919 ByteBuffer readContent = ByteBuffer.allocate(CAPACITY_NORMAL + 1); in test_readLjava_nio_ByteBuffer_Blocking() local
1925 count = channel1.read(readContent); in test_readLjava_nio_ByteBuffer_Blocking()
1937 readContent.flip(); in test_readLjava_nio_ByteBuffer_Blocking()
1939 assertEquals(writeContent[i], readContent.get()); in test_readLjava_nio_ByteBuffer_Blocking()
1963 ByteBuffer readContent = ByteBuffer.allocate(CAPACITY_NORMAL + 1); in test_readLjava_nio_ByteBuffer_Nonblocking() local
1969 count = channel1.read(readContent); in test_readLjava_nio_ByteBuffer_Nonblocking()
1982 assertEquals(CAPACITY_NORMAL, readContent.position()); in test_readLjava_nio_ByteBuffer_Nonblocking()
1983 readContent.flip(); in test_readLjava_nio_ByteBuffer_Nonblocking()
1985 assertEquals(writeContent[i], readContent.get()); in test_readLjava_nio_ByteBuffer_Nonblocking()
2015 byte[] readContent = new byte[CAPACITY_NORMAL + 1]; in test_writeLjava_nio_ByteBuffer_Blocking()
[all …]
DServerSocketChannelTest.java427 byte[] readContent = new byte[size + 1]; in assertReadResult()
430 while ((count = in.read(readContent, total, size + 1 - total)) != -1) { in assertReadResult()
435 assertEquals((byte) i, readContent[i]); in assertReadResult() local
/libcore/support/src/test/java/tests/support/
DSupport_TestWebServer.java553 private int readContent(InputStream is) { in readContent() method in Support_TestWebServer.Worker
591 nread = readContent(is); in handleClient()
/libcore/luni/src/main/java/org/apache/harmony/security/x501/
DAttributeTypeAndValue.java344 in.readContent();
/libcore/luni/src/main/java/java/io/
DObjectInputStream.java636 readContent(tc); in discardData()
693 private Object readContent(byte tc) throws ClassNotFoundException, in readContent() method in ObjectInputStream