/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
RootInputStream.java | 44 * @param in the stream to read from.
52 * (the number of <code>\r\n</code> read so far plus 1).
62 * call to {@link #read()}, {@link #read(byte[]) or
63 * {@link #read(byte[], int, int)} will return
71 * @see java.io.InputStream#read()
73 public int read() throws IOException {
method in class:RootInputStream 78 int b = is.read();
88 * @see java.io.InputStream#read(byte[], int, int)
90 public int read(byte[] b, int off, int len) throws IOException { method in class:RootInputStream 108 public int read(byte[] b) throws IOException { method in class:RootInputStream [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
PartialInputStream.java | 39 public int read() throws IOException {
method in class:PartialInputStream 41 return super.read();
46 public int read(byte b[]) throws IOException {
method in class:PartialInputStream 47 return read(b, 0, b.length);
50 public int read(byte b[], int off, int len) throws IOException {
method in class:PartialInputStream 52 return super.read(b, off, len); //To change body of overridden methods use File | Settings | File Templates.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
unistd.h | 27 size_t __nbytes), read) __wur; 31 __wur __warnattr ("read called with bigger length than size of " 35 read (int __fd, void *__buf, size_t __nbytes) function
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
unistd.h | 27 size_t __nbytes), read) __wur; 31 __wur __warnattr ("read called with bigger length than size of " 35 read (int __fd, void *__buf, size_t __nbytes) function
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_midi_event.h | 32 int read; /* chars read */ member in struct:snd_midi_event
|
tea575x-tuner.h | 32 unsigned int (*read)(struct snd_tea575x *tea); member in struct:snd_tea575x_ops
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
unistd.h | 27 size_t __nbytes), read) __wur; 31 __wur __warnattr ("read called with bigger length than size of " 35 read (int __fd, void *__buf, size_t __nbytes) function
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_midi_event.h | 32 int read; /* chars read */ member in struct:snd_midi_event
|
tea575x-tuner.h | 32 unsigned int (*read)(struct snd_tea575x *tea); member in struct:snd_tea575x_ops
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/ |
dbrecio.py | 3 File-like objects that read from or write to a bsddb record. 13 buf = f.read() # read until EOF 14 buf = f.read(n) # read up to n bytes 68 def read(self, n = -1): member in class:DBRecIO 155 text = open(file, 'r').read() 172 line2 = f.read(len(line)) 179 line2 = f.read() 182 print 'Read', len(list), 'more lines [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
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] 120 def read(self, size=-1): member in class:Chunk 121 """Read at most size bytes from the chunk. 122 If size is omitted or negative, read until the end 134 data = self.file.read(size [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
dbrecio.py | 3 File-like objects that read from or write to a bsddb record. 13 buf = f.read() # read until EOF 14 buf = f.read(n) # read up to n bytes 68 def read(self, n = -1): member in class:DBRecIO 155 text = open(file, 'r').read() 172 line2 = f.read(len(line)) 179 line2 = f.read() 182 print 'Read', len(list), 'more lines [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
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] 120 def read(self, size=-1): member in class:Chunk 121 """Read at most size bytes from the chunk. 122 If size is omitted or negative, read until the end 134 data = self.file.read(size [all...] |
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
SocketStream.cpp | 134 const unsigned char *SocketStream::read( void *buf, size_t *inout_len) function in class:SocketStream
|
/system/core/include/utils/ |
Flattenable.h | 67 // read a POD structure 69 static void read(void const*& buffer, size_t& size, T& value) { function in class:android::FlattenableUtils
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
BlockDevice.java | 42 * Read a block of data from this device. 44 * @param devOffset the byte offset where to read the data from 45 * @param dest the destination buffer where to store the data read 46 * @throws IOException on read error 48 public abstract void read(long devOffset, ByteBuffer dest) method in interface:BlockDevice 56 * @throws ReadOnlyException if this {@code BlockDevice} is read-only 99 * Checks if this {@code BlockDevice} is read-only. 101 * @return if this {@code BlockDevice} is read-only
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FileInputStreamTest.java | 116 is.read(); 128 fis1.read(); 142 stdin.read(); 159 * @tests java.io.FileInputStream#read() 163 int c = isr.read(); 165 assertTrue("read returned incorrect char", c == fileString.charAt(0)); 169 * @tests java.io.FileInputStream#read(byte[]) 175 is.read(buf1); 177 assertTrue("Failed to read correct data", new String(buf1, 0, 182 * @tests java.io.FileInputStream#read(byte[], int, int [all...] |
SequenceInputStreamTest.java | 90 si.read(buf, 0, s1.length()); 91 si.read(buf, s1.length(), s2.length()); 92 assertTrue("Read incorrect bytes: " + new String(buf), new String( 95 fail("IOException during read test : " + e.getMessage()); 124 * @tests java.io.SequenceInputStream#read() 127 // Test for method int java.io.SequenceInputStream.read() 129 si.read(); 130 assertTrue("Read incorrect char", (char) si.read() == s1.charAt(1)); 132 fail("IOException during read test: " + e.getMessage()) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/io/ |
BufferedReaderTest.java | 94 br.read(); 95 fail("Read on closed stream"); 113 br.read(buf, 0, 500); 121 br.read(buf, 0, 1000); 136 in.read(new char[14], 0, 14); 138 assertTrue("Wrong chars", in.read() == (char) 6 139 && in.read() == (char) 7); 146 assertTrue("Wrong chars 2", in.read() == (char) 6 147 && in.read() == (char) 7); 152 int result = br.read(carray) [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
CheckedInputStreamTest.java | 65 while (checkEmpty.read() >= 0) { 74 while (checkIn.read() >= 0) { 84 checkIn2.read(outBuf, 0, 10); 117 checkIn.read(); 120 checkIn.read(); 135 checkIn.read(buff, 10, 5); 138 checkIn.read(buff, 10, 5);
|
/external/guava/guava-tests/test/com/google/common/io/ |
CountingInputStreamTest.java | 38 assertEquals(0, counter.read()); 43 assertEquals(10, counter.read(new byte[10])); 48 assertEquals(3, counter.read(new byte[10], 1, 3)); 64 assertEquals(-1, counter.read()); 69 assertEquals(20, counter.read(new byte[30])); 71 assertEquals(-1, counter.read(new byte[30])); 77 assertEquals(10, counter.read(new byte[10])); 80 counter.read(); 110 public int read() throws IOException { method in class:CountingInputStreamTest.UnmarkableInputStream
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/ |
CAVLCReader.java | 21 package com.googlecode.mp4parser.h264.read; 47 * Read unsigned exp-golomb code 106 public byte[] read(int payloadSize) throws IOException { method in class:CAVLCReader
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ProcessBuilderTest.java | 65 in.read(); 70 err.read();
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
ClusterChainDirectory.java | 62 result.read(); 87 protected final void read(ByteBuffer data) throws IOException { method in class:ClusterChainDirectory
|
FsInfoSector.java | 57 * @return the FS info sector that was read 58 * @throws IOException on read error 61 public static FsInfoSector read(Fat32BootSector bs) throws IOException { method in class:FsInfoSector 65 result.read();
|