/frameworks/av/media/mtp/ |
MtpObjectInfo.cpp | 58 bool MtpObjectInfo::read(MtpDataPacket& packet) { function in class:android::MtpObjectInfo
|
MtpRequestPacket.cpp | 39 int MtpRequestPacket::read(int fd) { function in class:android::MtpRequestPacket 40 int ret = ::read(fd, mBuffer, mBufferSize); 42 // file read error
|
MtpResponsePacket.cpp | 47 int MtpResponsePacket::read(struct usb_request *request) { function in class:android::MtpResponsePacket
|
MtpStorageInfo.cpp | 48 bool MtpStorageInfo::read(MtpDataPacket& packet) { function in class:android::MtpStorageInfo 51 // read the device info
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothInputStream.java | 50 * reached. Blocks until one byte has been read, the end of the source 53 * @return the byte read or -1 if the end of stream has been reached. 58 public int read() throws IOException { method in class:BluetoothInputStream 60 int ret = mSocket.read(b, 0, 1); 73 * the byte array in which to store the bytes read. 76 * read from this stream. 79 * @return the number of bytes actually read or -1 if the end of the stream 89 public int read(byte[] b, int offset, int length) throws IOException { method in class:BluetoothInputStream 96 return mSocket.read(b, offset, length);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
Durable.java | 25 public void read(DataInputStream in) throws IOException; method in interface:Durable
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
ByteBufferInputStream.java | 31 public int read() { method in class:ByteBufferInputStream 39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
|
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
aio.hpp | 48 * @param pin channel number to read ADC inputs 65 * Read a value from the AIO pin. By default mraa will shift 71 read() function in class:mraa::Aio 76 * Read a value from the AIO pin and return it as a normalized float. 88 * @param bits the bits the return from read should be i.e 10 97 * Gets the bit value mraa is shifting the analog read to. 99 * @return bit value mraa is set return from the read function
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
M24LR64ESample.java | 46 // Read the last byte of the EEPROM area 49 short read = nfcTag.readByte(addr); local 50 System.out.println("Read: " + read); 53 read = (short) (~read & 0xff); 54 nfcTag.writeByte(addr, read); 55 System.out.println("Wrote: " + read); 57 // Now read it back 58 read = nfcTag.readByte(addr) [all...] |
/libcore/ojluni/src/main/java/java/io/ |
ObjectInput.java | 41 * Read and return an object. The class that implements this interface 42 * defines where the object is "read" from. 44 * @return the object read from the stream 56 * @return the byte read, or -1 if the end of the 60 public int read() throws IOException; method in interface:ObjectInput 65 * @param b the buffer into which the data is read 66 * @return the actual number of bytes read, -1 is 70 public int read(byte b[]) throws IOException; method in interface:ObjectInput 75 * @param b the buffer into which the data is read 77 * @param len the maximum number of bytes read 82 public int read(byte b[], int off, int len) throws IOException; method in interface:ObjectInput [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/ |
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 99 * read bytes at such a position will immediately return an end-of-file
|
/libcore/ojluni/src/main/java/sun/net/ |
TelnetInputStream.java | 32 * This class overrides read to do CRLF processing as specified in 90 public int read() throws IOException { method in class:TelnetInputStream 92 return super.read(); 106 if ((c = super.read()) == '\r') { /* CR */ 107 switch (c = super.read()) { 127 /** read into a byte array */ 128 public int read(byte bytes[]) throws IOException { method in class:TelnetInputStream 129 return read(bytes, 0, bytes.length); 133 * Read into a byte array at offset <i>off</i> for length <i>length</i> 136 public int read(byte bytes[], int off, int length) throws IOException method in class:TelnetInputStream [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
SocketDispatcher.java | 35 * for read and write operations. 41 int read(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
|
/libcore/support/src/test/java/libcore/tlswire/record/ |
TlsRecord.java | 31 public static TlsRecord read(DataInput in) throws IOException { method in class:TlsRecord 34 result.version = TlsProtocolVersion.read(in);
|
/libcore/support/src/test/java/tests/support/ |
ThrowingReader.java | 26 * read. 38 @Override public int read() throws IOException { method in class:ThrowingReader 40 int result = super.read(); 45 @Override public int read(char[] buf, int offset, int count) method in class:ThrowingReader 53 int returned = super.read(buf, offset, count);
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
ByteBufferInputStream.java | 31 public int read() { method in class:ByteBufferInputStream 39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
ByteBufferInputStream.java | 31 public int read() { method in class:ByteBufferInputStream 39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
inputstream_wrapper.cpp | 23 int32_t InputStreamWrapper::read(int32_t length, int32_t offset) { function in class:InputStreamWrapper 58 // Acts like a read call that returns the End Of Image marker for a JPEG file.
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
ByteBufferInputStream.java | 31 public int read() { method in class:ByteBufferInputStream 39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
|
/packages/apps/Messaging/src/com/android/messaging/util/exif/ |
ByteBufferInputStream.java | 31 public int read() { method in class:ByteBufferInputStream 39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
ClosedInputStream.java | 22 * Closed input stream. This stream returns -1 to all attempts to read 44 public int read() { method in class:ClosedInputStream
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
FakeInputStream.java | 33 public int read() { method in class:FakeInputStream 44 public int read(byte[] buffer, int offset, int length) { method in class:FakeInputStream
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
af_vfs.h | 35 ssize_t (*read) (AFvirtualfile *vfile, void *data, size_t nbytes); member in struct:_AFvirtualfile
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
af_vfs.h | 39 ssize_t (*read) (AFvirtualfile *vfile, void *data, size_t nbytes); member in struct:_AFvirtualfile
|
/system/core/libmemunreachable/ |
ProcessMappings.h | 25 bool read; member in struct:Mapping
|