HomeSort by relevance Sort by last modified time
    Searched full:readall (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java 27 return new BEROctetString(Streams.readAll(getOctetStream()));
  /external/toybox/toys/posix/
cmp.c 47 len1 = readall(TT.fd, toybuf, size);
48 len2 = readall(fd, buf2, size);
expand.c 39 len = readall(fd, toybuf, sizeof(toybuf));
  /external/boringssl/src/ssl/test/
packeted_bio.cc 33 // ReadAll reads |len| bytes from |bio| into |out|. It returns 1 on success and
35 static int ReadAll(BIO *bio, uint8_t *out, size_t len) {
90 int ret = ReadAll(bio->next_bio, &opcode, sizeof(opcode));
99 ret = ReadAll(bio->next_bio, buf, sizeof(buf));
139 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes));
151 ret = ReadAll(bio->next_bio, buf, len);
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 113 byte[] bytes = readAll(in);
123 byte[] bytes = readAll(in);
135 byte[] bytes = readAll(in);
146 byte[] bytes = readAll(in);
154 byte[] bytes = readAll(in);
165 private byte[] readAll(InputStream in) throws IOException {
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 138 buffers.receive(requestBytes).readAll(NullSink);
145 buffers.transmit(responseBytes).readAll(NullSink);
149 buffers.receive(requestBytes).readAll(NullSink);
150 buffers.transmit(responseBytes).readAll(NullSink);
278 writeChunked(received, bytes, maxChunkSize).readAll(process);
288 writeChunked(process, bytes, maxChunkSize).readAll(sent);
  /external/toybox/toys/pending/
logger.c 66 toybuf[readall(0, toybuf, 4096-1)] = '\0';
getty.c 188 size = readall(STDIN_FILENO, TT.buff, sizeof(TT.buff)-1);
227 while ((size = readall(fd, buff, 1)) > 0) {
231 if (readall(fd, buff, 1) <= 0) perror_exit("readall");
317 while (readall(STDIN_FILENO, &ch, 1) != 1)
dumpleases.c 53 (readall(fd, &lease_struct, sizeof(lease_struct)))) {
telnetd.c 165 while ((size = readall(fd, &ch, 1)) > 0) {
167 if (readall(fd, &ch, 1) <= 0) perror_exit("readall!");
bootchartd.c 85 if ((len = readall(fd, toybuf, sizeof(toybuf)-1)) < 0) {
232 if ((len = readall(kcmd_line_fd, toybuf, sizeof(toybuf)-1)) > 0) {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RecordingCallback.java 42 body.source().readAll(buffer);
  /external/toybox/toys/other/
rfkill.c 75 while (sizeof(rfevent) == readall(fd, &rfevent, sizeof(rfevent))) {
login.c 92 size = readall(fd, toybuf,sizeof(toybuf)-1);
108 size = readall(fd, toybuf,sizeof(toybuf)-1);
acpi.c 60 len = readall(fd, toybuf, sizeof(toybuf));
blkid.c 71 len = readall(fd, toybuf, sizeof(toybuf));
inotifyd.c 82 len = readall(fds.fd, buf, len);
  /external/okhttp/okio/okio/src/test/java/okio/
RealBufferedSourceTest.java 197 * We don't want readAll to buffer an unbounded amount of data. Instead it
212 assertEquals(Segment.SIZE * 3, bufferedSource.readAll(mockSink));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 171 """readall() must handle signals and not lose data."""
175 read_method_name='readall',
177 # read() is the same thing as readall().
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 171 """readall() must handle signals and not lose data."""
175 read_method_name='readall',
177 # read() is the same thing as readall().
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 37 public static byte[] readAll(InputStream inStr)
  /development/tools/axl/
axl.py 183 class ReadAll(BaseProtocol):
243 Redirect, DataDrop, DropOnce, NoCR, PipeDrop, RedirectLoop, ReadAll, \
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 189 return readAll(body, getBodyEncoding());
337 public static String readAll(InputStream from, String encoding) throws IOException
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/
WebSocketReaderTest.java 255 payload.readAll(new Buffer());
317 payload.readAll(new Buffer());
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
AutobahnTester.java 81 payload.readAll(buffer);

Completed in 218 milliseconds

1 2 3