HomeSort by relevance Sort by last modified time
    Searched full:read (Results 151 - 175 of 14757) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/qemu/slirp-android/
sbuf.h 4 * Please read the file COPYRIGHT for the
19 char *sb_rptr; /* read pointer. points to where the next
20 * byte should be read from the sbuf */
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stdinB.gdb 15 # put a read watchpoint on mem
16 # we expect that the read watchpoint is not triggered in the child
22 # we should now have encountered the read watchpoint in the parent.
mcclean_after_fork.stdoutB.exp 7 Hardware read watchpoint 4: mem
9 Hardware read watchpoint 4: mem
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidBufferedInputStreamTest.java 41 Assert.assertEquals(str, read(a));
48 Assert.assertEquals("AbCdEfGhIj", read(b, 10));
62 assertEquals('A', d.read());
64 assertEquals('b', d.read());
65 assertEquals('C', d.read());
67 assertEquals('b', d.read());
76 assertEquals(str, read(e, 10000));
82 public static String read(InputStream a) throws IOException { method in class:OldAndroidBufferedInputStreamTest
86 r = a.read();
98 r = a.read();
105 public static String read(InputStream a, int x) throws IOException { method in class:OldAndroidBufferedInputStreamTest
    [all...]
OldAndroidBufferedReaderTest.java 39 assertEquals(str, read(a));
46 assertEquals("AbCdEfGhIj", read(b, 10));
66 public static String read(Reader a) throws IOException { method in class:OldAndroidBufferedReaderTest
70 r = a.read();
77 public static String read(Reader a, int x) throws IOException { method in class:OldAndroidBufferedReaderTest
79 int len = a.read(b, 0, x);
91 r = a.read();
104 r = a.read();
OldAndroidByteArrayInputStreamTest.java 38 Assert.assertEquals(str, read(a));
39 Assert.assertEquals("AbCdEfGhIj", read(b, 10));
44 public static String read(InputStream a) throws IOException { method in class:OldAndroidByteArrayInputStreamTest
48 r = a.read();
55 public static String read(InputStream a, int x) throws IOException { method in class:OldAndroidByteArrayInputStreamTest
57 int len = a.read(b, 0, x);
69 r = a.read();
82 r = a.read();
OldAndroidCharArrayReaderTest.java 37 Assert.assertEquals(str, read(a));
38 Assert.assertEquals("AbCdEfGhIj", read(b, 10));
43 public static String read(Reader a) throws IOException { method in class:OldAndroidCharArrayReaderTest
47 r = a.read();
54 public static String read(Reader a, int x) throws IOException { method in class:OldAndroidCharArrayReaderTest
56 int len = a.read(b, 0, x);
68 r = a.read();
81 r = a.read();
  /external/clang/test/Analysis/
refcnt_naming.m 17 -(NSObject*)photocopy; // read as "photocopy"
18 -(NSObject*)photoCopy; // read as "photo Copy"
19 -(NSObject*)__blebPRCopy; // read as "bleb PRCopy"
20 -(NSObject*)__blebPRcopy; // read as "bleb P Rcopy"
21 -(NSObject*)new_theprefixdoescount; // read as "new theprefixdoescount"
22 -(NSObject*)newestAwesomeStuff; // read as "newest awesome stuff"
taint-tester.cpp 19 ssize_t read; local
22 while ((read = T.getline(&line, &len, stdin)) != -1) {
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelInputStream.java 50 public int read(byte[] b, int off, int len) throws IOException method in class:ChannelInputStream
75 public int read(byte[] b) throws IOException method in class:ChannelInputStream
77 return read(b, 0, b.length);
81 public int read() throws IOException method in class:ChannelInputStream
83 /* Yes, this stream is pure and unbuffered, a single byte read() is slow */
87 int ret = read(b, 0, 1);
  /external/webrtc/src/modules/audio_processing/utility/
ring_buffer.h 26 // it is located. If all |element_count| data are feasible to read without
31 // Returns number of elements read.
40 // Moves the buffer read position and returns the number of elements moved.
41 // Positive |element_count| moves the read position towards the write position,
42 // that is, flushing the buffer. Negative |element_count| moves the read
47 // Returns number of available elements to read.
  /frameworks/compile/linkloader/include/impl/
ELFSection.hxx 34 ELFSection<Bitwidth>::read(Archiver &AR, function in class:ELFSection
46 return ELFSectionStrTabTy::read(AR, sh);
49 return ELFSectionSymTabTy::read(AR, owner, sh);
52 return ELFSectionProgBitsTy::read(AR, owner, sh);
55 return ELFSectionNoBitsTy::read(AR, sh);
59 return ELFSectionRelTableTy::read(AR, sh);
  /libcore/luni/src/main/java/libcore/net/http/
UnknownLengthHttpInputStream.java 35 @Override public int read(byte[] buffer, int offset, int count) throws IOException { method in class:UnknownLengthHttpInputStream
41 int read = in.read(buffer, offset, count); local
42 if (read == -1) {
47 cacheWrite(buffer, offset, read);
48 return read;
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 28 * When read, values will be changed from little endian to big
43 * @param input InputStream to read from
52 * @return the true if the byte read is zero, otherwise false
63 * Invokes the delegate's <code>read()</code> method.
64 * @return the byte read or -1 if the end of stream
71 return (byte)in.read();
76 * @return the byte read or -1 if the end of stream
88 * @return the read long
100 * @return the read long
111 * Invokes the delegate's <code>read(byte[] data, int, int)</code> method.
    [all...]
  /packages/apps/Email/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.
PositionInputStream.java 44 public int read() throws IOException { method in class:PositionInputStream
45 int b = inputStream.read();
75 public int read(byte b[]) throws IOException { method in class:PositionInputStream
76 final int c = inputStream.read(b);
81 public int read(byte b[], int off, int len) throws IOException { method in class:PositionInputStream
82 final int c = inputStream.read(b, off, len);
  /bionic/libc/unistd/
eventfd.c 5 * if the read() or write() does not return the proper number of bytes.
9 int ret = read(fd, counter, sizeof(*counter));
  /external/apache-harmony/auth/src/test/resources/
auth_policy1.txt 4 permission java.io.FilePermission "/home/duke", "read, write";
23 permission java.io.FilePermission "/home/bunny", "read, write";
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PushbackReaderTest.java 42 pbr.read(buf, 0, 5);
66 pbr.read();
95 * @tests java.io.PushbackReader#read()
98 // Test for method int java.io.PushbackReader.read()
101 pbr.read();
102 c = (char) pbr.read();
103 assertTrue("Failed to read char: " + c, c == pbString.charAt(1));
106 assertTrue("Wrong double byte character", reader.read() == '\u8765');
108 fail("IOException during read test : " + e.getMessage());
113 * @tests java.io.PushbackReader#read(char[], int, int
    [all...]
  /external/javassist/sample/hotswap/
Test.java 11 new FileInputStream(newfile).read(bytes);
19 new FileInputStream(newfile).read(bytes);
  /external/javassist/src/main/javassist/bytecode/
package.html 6 It allows the users to read and modify a constant pool entry, a single
10 class file and Java bytecode. For more details, read this book:
  /external/mesa3d/docs/
RELNOTES-3.2 4 PLEASE READ!!!!
8 have been added. For a list of bug fixes please read the VERSIONS file.
  /external/oprofile/libutil/
op_deviceio.c 6 * @remark Read the file COPYING
34 count = read(devfd, buf, size);
  /external/proguard/src/proguard/classfile/
package.html 9 a complete representation that can be read, modified, and written back.
11 an incomplete representation that can be only be read. It is however
  /external/skia/src/svg/
SkSVG.cpp 21 size_t size = stream->read(nil, 0);
24 size_t actual = stream->read(data, size);

Completed in 527 milliseconds

1 2 3 4 5 67 8 91011>>