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

1 23 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
pth_cancel_locked.vgtest 2 vgopts: --read-var-info=yes --check-stack-var=yes
pth_process_shared_mutex.vgtest 3 vgopts: --read-var-info=yes --check-stack-var=yes
sem_open.vgtest 2 vgopts: --check-stack-var=yes --read-var-info=yes
tc24_nonzero_sem.vgtest 3 vgopts: --read-var-info=yes
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLInputStream.java 26 * some additional read methods allowing to read TLS specific
41 * @see org.apache.harmony.xnet.provider.jsse.SSLStreamedInput#read()
42 * @see org.apache.harmony.xnet.provider.jsse.SSLBufferedInput#read()
43 * @see org.apache.harmony.xnet.provider.jsse.HandshakeIODataStream#read()
46 public abstract int read() throws IOException; method in class:SSLInputStream
52 return read() & 0x00FF;
59 return (read() << 8) | (read() & 0x00FF);
66 return (read() << 16) | (read() << 8) | (read() & 0x00FF)
92 public byte[] read(int length) throws IOException { method in class:SSLInputStream
101 public int read(byte[] b, int off, int len) throws IOException { method in class:SSLInputStream
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
LittleEndien.java 37 * <code>LittleEndien</code> is a class to read littleendien stored data
39 * assume they come from a LittleEndien input stream. Currently used to read .ms3d and .3ds files.
50 * @param in The input stream to read from.
57 public int read() throws IOException { method in class:LittleEndien
58 return in.read();
62 public int read(byte[] buf) throws IOException { method in class:LittleEndien
63 return in.read(buf);
67 public int read(byte[] buf, int off, int len) throws IOException { method in class:LittleEndien
68 return in.read(buf, off, len);
72 return (in.read() & 0xff) | ((in.read() & 0xff) << 8)
    [all...]
  /bionic/libc/arch-arm/syscalls/
read.S 5 ENTRY(read) function
14 END(read)
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ShortArrayCodeInput.java 26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
  /external/libsepol/tests/policies/test-expander/
base-base-only.conf 8 read
31 mlsconstrain file { read }
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles-expected.txt 2 db1 read statement succeeded
5 db2 read statement succeeded
  /external/oprofile/libpp/
image_errors.h 6 * @remark Read the file COPYING
20 /// possible reasons why we can't read a binary image
29 /// output why the image passed can't be read to stderr, we warranty only one
35 /// output why the image passed can't be read to stderr
39 /// output why any bad images can't be read to stderr
  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 37 assertEquals("Wrong return value!", 4, simple.read(buf));
39 assertEquals("Wrong stuff read!", "Bla ", String.valueOf(buf));
40 simple.read(buf);
42 assertEquals("Wrong stuff read!", "bla,", String.valueOf(buf));
45 simple.read(buf);
55 assertEquals("Wrong return value!", 4, simple.read(buf));
56 assertEquals("Wrong stuff read!", "Bla ", new String(buf));
57 simple.read(buf);
58 assertEquals("Wrong stuff read!", "bla,", new String(buf));
61 simple.read(buf)
116 @Override public int read(char[] buf, int offset, int count) { method in class:OldReaderTest.MockReader
    [all...]
OldInputStreamTest.java 42 public int read() throws IOException { method in class:OldInputStreamTest.MockInputStream
93 // Test 1: This read operation should complete without an error.
94 assertEquals("Test 1: Incorrect count of bytes read.",
95 is.read(b), 10);
100 assertTrue("Test 1: Wrong bytes read.", equal);
102 // Test 2: Test that the correct number of bytes read is returned
105 bytesRead = is.read(b);
106 assertEquals("Test 2: Incorrect count of bytes read.",
112 assertTrue("Test 2: Wrong bytes read.", equal);
115 // the next call of read(byte[]) should return -1
    [all...]
OldPushbackReaderTest.java 41 pbr.read(buf, 0, 5);
108 * java.io.PushbackReader#read()
114 assertEquals("Wrong value read!", 66, tobj.read());
117 tobj.read();
125 * java.io.PushbackReader#read(char[], int, int)
132 tobj.read(buf, 6, 5);
133 assertEquals("Wrong value read!", "BEGIN", new String(buf, 6, 5));
134 assertEquals("Too much read!", "012345BEGIN123456789", new String(buf));
137 tobj.read(buf, 6, 5)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/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...]
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.java 30 * methods being called, such as read(byte[]) to read(byte[], int, int).
48 * Invokes the delegate's <code>read()</code> method.
49 * @return the byte read or -1 if the end of stream
52 public int read() throws IOException { method in class:ProxyInputStream
53 return in.read();
57 * Invokes the delegate's <code>read(byte[])</code> method.
58 * @param bts the buffer to read the bytes into
59 * @return the number of bytes read or -1 if the end of stream
62 public int read(byte[] bts) throws IOException { method in class:ProxyInputStream
74 public int read(byte[] bts, int st, int end) throws IOException { method in class:ProxyInputStream
    [all...]
  /external/oprofile/libutil/
op_deviceio.h 6 * @remark Read the file COPYING
33 * op_read_device - read from a special char device
38 * Read size bytes from a device into buffer buf.
40 * then a read is requested in one go of size bytes.
43 * calls if the number of bytes read is not what is requested
46 * The number of bytes read is returned, or a negative number
49 * arrange for re-starting the read if necessary.
  /packages/apps/Email/src/com/android/email/
FixedLengthInputStream.java 23 * A filtering InputStream that stops allowing reads after the given length has been read. This
24 * is used to allow a client to read directly from an underlying protocol stream without reading
25 * past where the protocol handler intended the client to read.
43 public int read() throws IOException { method in class:FixedLengthInputStream
46 return mIn.read();
53 public int read(byte[] b, int offset, int length) throws IOException { method in class:FixedLengthInputStream
55 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
68 public int read(byte[] b) throws IOException { method in class:FixedLengthInputStream
69 return read(b, 0, b.length);
PeekableInputStream.java 25 * and a subsequent read will still return the peeked byte.
37 public int read() throws IOException { method in class:PeekableInputStream
39 return mIn.read();
48 mPeekedByte = read();
55 public int read(byte[] b, int offset, int length) throws IOException { method in class:PeekableInputStream
57 return mIn.read(b, offset, length);
61 int r = mIn.read(b, offset + 1, length - 1);
71 public int read(byte[] b) throws IOException { method in class:PeekableInputStream
72 return read(b, 0, b.length);
  /bionic/libc/arch-x86/syscalls/
read.S 5 .type read, @function
6 .globl read
9 read: label
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview_p.h 94 Q_PROPERTY(QString title READ title NOTIFY titleChanged)
95 Q_PROPERTY(QPixmap icon READ icon NOTIFY iconChanged)
96 Q_PROPERTY(QString statusText READ statusText NOTIFY statusTextChanged)
98 Q_PROPERTY(QString html READ html WRITE setHtml NOTIFY htmlChanged)
100 Q_PROPERTY(int pressGrabTime READ pressGrabTime WRITE setPressGrabTime NOTIFY pressGrabTimeChanged)
102 Q_PROPERTY(int preferredWidth READ preferredWidth WRITE setPreferredWidth NOTIFY preferredWidthChanged)
103 Q_PROPERTY(int preferredHeight READ preferredHeight WRITE setPreferredHeight NOTIFY preferredHeightChanged)
104 Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged)
105 Q_PROPERTY(qreal progress READ progress NOTIFY progressChanged)
106 Q_PROPERTY(Status status READ status NOTIFY statusChanged
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
ReadableByteChannel.java 23 * A {@code ReadableByteChannel} is a type of {@link Channel} that can read
26 * Read operations are synchronous on a {@code ReadableByteChannel}, that is,
27 * if a read is already in progress on the channel then subsequent reads will
28 * block until the first read completes. It is undefined whether non-read
36 * The maximum number of bytes that will be read is the
38 * buffer when the method is invoked. The bytes will be read into the buffer
42 * The call may block if other threads are also attempting to read from the
46 * the bytes that were read. The buffer's
51 * @return the number of bytes actually read
65 public int read(ByteBuffer buffer) throws IOException; method in interface:ReadableByteChannel
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SourceChannelTest.java 64 * @tests java.nio.channels.Pipe.SourceChannel#read(ByteBuffer)
67 // if anything can read, read method will not block
69 int count = source.read(ByteBuffer.allocate(10));
74 * @tests java.nio.channels.Pipe.SourceChannel#read(ByteBuffer)
79 source.read(nullBuf);
87 * @tests java.nio.channels.Pipe.SourceChannel#read(ByteBuffer)
93 long count = source.read(readBuf);
95 // readBuf is full, read 0 byte expected
96 count = source.read(readBuf)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/io/
MacInputStream.java 22 public int read() method in class:MacInputStream
25 int b = in.read();
34 public int read( method in class:MacInputStream
40 int n = in.read(b, off, len);

Completed in 2507 milliseconds

1 23 4 5 6 7 8 91011>>