HomeSort by relevance Sort by last modified time
    Searched refs:read (Results 401 - 425 of 7502) sorted by null

<<11121314151617181920>>

  /external/syslinux/com32/lib/sys/
err_read.c 53 .read = __err_read,
  /external/syslinux/gpxe/src/include/gpxe/
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
  /external/syslinux/libfat/
libfatint.h 38 int (*read) (intptr_t, void *, size_t, libfat_sector_t); member in struct:libfat_filesystem
  /frameworks/av/media/libnbaio/include/media/nbaio/
AudioBufferProviderSource.h 45 virtual ssize_t read(void *buffer, size_t count);
PipeReader.h 48 virtual ssize_t read(void *buffer, size_t count);
  /frameworks/av/media/mtp/
MtpDevHandle.h 32 int read(void *data, size_t len);
MtpDeviceInfo.h 47 bool read(MtpDataPacket& packet);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 54 * Creates an input stream for the <code>Operation</code> to read from
65 * Returns the number of bytes that can be read (or skipped over) from this
69 * @return the number of bytes that can be read from this input stream
85 * @return the byte read from the input stream or -1 if it reaches the end of
90 public synchronized int read() throws IOException { method in class:PrivateInputStream
101 public int read(byte[] b) throws IOException { method in class:PrivateInputStream
102 return read(b, 0, b.length);
106 public synchronized int read(byte[] b, int offset, int length) throws IOException { method in class:PrivateInputStream
  /frameworks/ml/nn/runtime/test/benchmark/src/com/example/android/nn/benchmark/
NNTestBase.java 97 int read; local
98 while((read = in.read(buffer)) != -1){
99 out.write(buffer, 0, read);
  /frameworks/rs/
rsFifoSocket.h 39 size_t read(void *data, size_t bytes);
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
SocketComm.h 57 * Blocking call to read data from the connection.
62 std::vector<uint8_t> read() override;
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPOutputStreamTest.java 57 assertEquals(1, in.read());
58 assertEquals(2, in.read());
59 assertEquals(3, in.read());
66 in.read();
  /libcore/ojluni/src/main/java/java/nio/channels/
DatagramChannel.java 48 * order to use the {@link #read(java.nio.ByteBuffer) read} and {@link
266 * on read or write operations that are already in progress at the moment
308 * on read or write operations that are already in progress at the moment
348 * ReadableByteChannel#read(java.nio.ByteBuffer) read} operation. If there
363 * already initiated a read operation upon this channel, however, then an
382 * while the read operation is in progress
386 * while the read operation is in progress, thereby
447 * while the read operation is in progres
482 public abstract int read(ByteBuffer dst) throws IOException; method in class:DatagramChannel
497 public abstract long read(ByteBuffer[] dsts, int offset, int length) method in class:DatagramChannel
513 public final long read(ByteBuffer[] dsts) throws IOException { method in class:DatagramChannel
    [all...]
SeekableByteChannel.java 36 * that contains a variable-length sequence of bytes that can be read and
59 * <p> Bytes are read starting at this channel's current position, and
60 * then the position is updated with the number of bytes actually read.
65 int read(ByteBuffer dst) throws IOException; method in interface:SeekableByteChannel
101 * read bytes at such a position will immediately return an end-of-file
SocketChannel.java 59 * thread is blocked in a read operation on the socket's channel, then the read
107 * mutually synchronized against each other, and an attempt to initiate a read
342 * <p> This method may be invoked at any time. If a read or write
410 * <p> This method may be invoked at any time. If a read or write
467 public abstract int read(ByteBuffer dst) throws IOException; method in class:SocketChannel
473 public abstract long read(ByteBuffer[] dsts, int offset, int length) method in class:SocketChannel
480 public final long read(ByteBuffer[] dsts) throws IOException { method in class:SocketChannel
481 return read(dsts, 0, dsts.length);
  /libcore/ojluni/src/main/java/sun/net/www/
MeteredStream.java 37 /* if expected != -1, after we've read >= expected, we're "closed" and return -1
38 * from subsequest read() 's
75 * If read beyond the markLimit, invalidate the mark
89 // read overrun.
115 public synchronized int read() throws java.io.IOException { method in class:MeteredStream
119 int c = in.read();
128 public synchronized int read(byte b[], int off, int len) method in class:MeteredStream
133 int n = in.read(b, off, len);
  /libcore/support/src/test/java/tests/support/
Support_StringReader.java 48 * longer read from it. Only the first invocation of this method has any
112 * @return the character read or -1 if end of reader.
118 public int read() throws IOException { method in class:Support_StringReader
133 * <code>buf</code>. Returns the number of characters actually read or -1
137 * character array to store the read characters
139 * offset in buf to store the read characters
141 * maximum number of characters to read
142 * @return the number of characters read or -1 if end of reader.
148 public int read(char buf[], int offset, int count) throws IOException { method in class:Support_StringReader
160 int read = end - pos local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullInputStream.java 38 * reads a byte and leaves the array unchanged in the read
119 * Return the number of bytes that can be read.
121 * @return The number of bytes that can be read.
171 * Read a byte.
178 * @throws IOException if trying to read past the end of file.
180 public int read() throws IOException { method in class:NullInputStream
182 throw new IOException("Read after end of file");
192 * Read some bytes into the specified array.
194 * @param bytes The byte array to read into
195 * @return The number of bytes read or <code>-1</code
202 public int read(byte[] bytes) throws IOException { method in class:NullInputStream
219 public int read(byte[] bytes, int offset, int length) throws IOException { method in class:NullInputStream
    [all...]
NullReader.java 38 * reads a character and leaves the array unchanged in the read
155 * Read a character.
162 * @throws IOException if trying to read past the end of file.
164 public int read() throws IOException { method in class:NullReader
166 throw new IOException("Read after end of file");
176 * Read some characters into the specified array.
178 * @param chars The character array to read into
179 * @return The number of characters read or <code>-1</code>
184 * @throws IOException if trying to read past the end of file.
186 public int read(char[] chars) throws IOException method in class:NullReader
203 public int read(char[] chars, int offset, int length) throws IOException { method in class:NullReader
    [all...]
  /packages/services/Car/tools/keventreader/server/
eventgatherer.h 34 std::vector<com::android::car::keventreader::KeypressEvent> read();
inputsource.h 33 std::optional<com::android::car::keventreader::KeypressEvent> read() const;
  /prebuilts/go/darwin-x86/doc/progs/
timeout1.go 23 // a read from ch has occurred
25 // the read from ch has timed out
  /prebuilts/go/linux-x86/doc/progs/
timeout1.go 23 // a read from ch has occurred
25 // the read from ch has timed out
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileWriter.java 40 * @param is input stream from which trace data is read
114 int read = dis.read(buffer, readLen, len - readLen); local
115 if (read < 0) {
118 readLen += read;
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd_hostops.c 51 .op_read = read,

Completed in 629 milliseconds

<<11121314151617181920>>