HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 76 - 100 of 3357) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/io/
SessionInputBuffer.java 54 int read(byte[] b, int off, int len) throws IOException; method in interface:SessionInputBuffer
56 int read(byte[] b) throws IOException; method in interface:SessionInputBuffer
58 int read() throws IOException; method in interface:SessionInputBuffer
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
LimitedInputStream.java 49 public int read() throws IOException { method in class:LimitedInputStream
50 if (read(ONE_BYTE, 0, 1) == 1) {
57 public int read(byte[] b) throws IOException { method in class:LimitedInputStream
58 return read(b, 0, b.length);
62 public int read(byte[] b, int off, int len) throws IOException { method in class:LimitedInputStream
67 int numRead = in.read(b, off, maxRead);
  /external/clang/test/SemaCXX/
incomplete-call.cpp 56 void basic_istream<CharT>::read() { // expected-error{{out-of-line definition of 'read' from class 'basic_istream<CharT>' without definition}} function in class:pr18542::X::basic_istream
  /external/conscrypt/common/src/jni/main/include/conscrypt/
bio_input_stream.h 32 int read(char *buf, int len) { function in class:conscrypt::BioInputStream
41 int read = read_internal(buf, len - 1, jniutil::openSslInputStream_readLineMethod); local
42 buf[read] = '\0';
44 return read;
57 JNI_TRACE("BioInputStream::read could not get JNIEnv");
62 JNI_TRACE("BioInputStream::read called with pending exception");
68 JNI_TRACE("BioInputStream::read failed call to NewByteArray");
72 jint read = env->CallIntMethod(getStream(), method, javaBytes.get()); local
74 JNI_TRACE("BioInputStream::read failed call to InputStream#read");
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/tlswire/record/
TlsRecord.java 29 public static TlsRecord read(DataInput in) throws IOException { method in class:TlsRecord
32 result.version = TlsProtocolVersion.read(in);
  /external/curl/lib/
warnless.h 78 # undef read macro
79 # define read(fd, buf, count) curlx_read(fd, buf, count) macro
  /external/deqp/execserver/
xsPosixFileReader.hpp 45 int read (deUint8* dst, int numBytes) { return m_buf.tryRead(numBytes, dst); } function in class:xs::posix::FileReader
  /external/deqp/framework/delibs/destream/
deStreamCpyThread.c 35 deInt32 read = 0; local
39 readResult = deInStream_read(thread->input, buffer, thread->bufferSize, &read);
41 while (written < read)
44 deOutStream_write(thread->output, buffer, read - written, &wrote);
  /external/guava/guava/src/com/google/common/base/
Ticker.java 46 public abstract long read(); method in class:Ticker
59 public long read() {
  /external/guava/guava-testlib/src/com/google/common/testing/
FakeTicker.java 31 * The ticker can be configured so that the time is incremented whenever {@link #read} is called:
69 @Override public long read() { method in class:FakeTicker
  /external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java 35 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:RandomAmountInputStream
36 return super.read(b, off, random.nextInt(len) + 1);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
StreamProvider.java 44 public int read(char[] buffer, int off, int len) throws IOException { method in class:StreamProvider
45 int result = _reader.read(buffer, off, len);
  /external/libese/apps/weaver/card/src/com/android/weaver/
Slots.java 35 * Read the value from the identified slot.
44 * @return Status byte indicating the success or otherwise of the read.
46 byte read(short slotId, byte[] key, short keyOffset, byte[] value, short valueOffset); method in interface:Slots
  /external/libxml2/win32/wince/
wincecompat.c 22 int read(int handle, char *buffer, unsigned int len) function
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
CountingInputStream.java 17 * Counts the number of bytes read from an input stream.
26 public int read() throws IOException { method in class:CountingInputStream
27 int ret = in.read();
34 public int read(byte[] b, int off, int len) throws IOException { method in class:CountingInputStream
35 int ret = in.read(b, off, len);
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSource.java 34 @Override public long read(Buffer sink, long byteCount) throws IOException { method in class:ForwardingSource
35 return delegate.read(sink, byteCount);
  /external/proguard/src/proguard/io/
DirectoryPump.java 27 * This class can read a given file or directory, recursively, applying a given
65 dataEntryReader.read(new FileDataEntry(directory, file));
FilteredDataEntryReader.java 78 public void read(DataEntry dataEntry) method in class:FilteredDataEntryReader
87 dataEntryReader.read(dataEntry);
  /external/python/cpython2/Lib/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
122 def read(self, size=-1): member in class:Chunk
123 """Read at most size bytes from the chunk.
124 If size is omitted or negative, read until the end
136 data = self.file.read(size
    [all...]
  /external/python/cpython3/Lib/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack_from(strflag+'L', file.read(4))[0]
122 def read(self, size=-1): member in class:Chunk
123 """Read at most size bytes from the chunk.
124 If size is omitted or negative, read until the end
136 data = self.file.read(size
    [all...]
  /external/skia/src/core/
SkBuffer.cpp 24 bool SkRBuffer::read(void* buffer, size_t size) { function in class:SkRBuffer
  /external/skqp/src/core/
SkBuffer.cpp 14 bool SkRBuffer::read(void* buffer, size_t size) { function in class:SkRBuffer
  /external/syslinux/gpxe/src/include/gpxe/
blockdev.h 20 * Read block
28 int ( * read ) ( struct block_device *blockdev, uint64_t block, member in struct:block_device_operations
nvs.h 37 /** Read data from device
40 * @v address Address from which to read
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address, member in struct:nvs_device
posix_io.h 76 * Read data from file
80 * @v len Maximum length to read
81 * @ret len Actual length read, or negative error number
83 static inline ssize_t read ( int fd, void *buf, size_t len ) { function

Completed in 546 milliseconds

1 2 34 5 6 7 8 91011>>