/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);
|
/external/valgrind/main/gdbserver_tests/ |
mcclean_after_fork.stdoutB.exp | 7 Hardware read watchpoint 4: mem 9 Hardware read watchpoint 4: mem
|
/frameworks/compile/mclinker/include/mcld/LD/ |
DiagReaders.inc | 4 DIAG(fatal_cannot_read_input, DiagnosticEngine::Fatal, "cannot read input input %0", "cannot read input %0")
|
/frameworks/native/libs/gui/ |
LayerState.cpp | 45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t 60 input.read(crop); 61 input.read(transparentRegion); 70 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState 72 return state.read(input); 87 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState 93 input.read(viewport); 94 input.read(frame);
|
/libcore/luni/src/main/java/java/io/ |
BufferedInputStream.java | 40 * The buffer containing the current bytes read from the target InputStream. 70 * {@code BufferedInputStream}. All read operations on such a stream will 84 * {@code BufferedInputStream}. All read operations on such a stream will 100 * Returns an estimated number of bytes that can be read or skipped without blocking for more 142 int result = localIn.read(localBuf); 168 int bytesread = localIn.read(localBuf, pos, localBuf.length - pos); 175 * indicates how many bytes can be read before a mark is invalidated. 182 * the number of bytes that can be read before the mark is 211 * @return the byte read or -1 if the end of the source stream has been 217 public synchronized int read() throws IOException method in class:BufferedInputStream 245 @Override public synchronized int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { method in class:BufferedInputStream 277 int read; local 366 long read = count - pos; local [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
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();
|
OldAndroidPushbackInputStreamTest.java | 37 Assert.assertEquals("pushAbCdEfGhIjKlM\nOpQrStUvWxYz", read(a)); 45 Assert.assertEquals("XAbCdEfGhI", read(b, 10)); 58 public static String read(InputStream a) throws IOException { method in class:OldAndroidPushbackInputStreamTest 62 r = a.read(); 69 public static String read(InputStream a, int x) throws IOException { method in class:OldAndroidPushbackInputStreamTest 71 int len = a.read(b, 0, x); 83 r = a.read(); 96 r = a.read();
|
OldAndroidStringReaderTest.java | 35 Assert.assertEquals(str, read(a)); 36 Assert.assertEquals("AbCdEfGhIj", read(b, 10)); 41 public static String read(Reader a) throws IOException { method in class:OldAndroidStringReaderTest 45 r = a.read(); 52 public static String read(Reader a, int x) throws IOException { method in class:OldAndroidStringReaderTest 54 int len = a.read(b, 0, x); 66 r = a.read(); 79 r = a.read();
|
OldByteArrayInputStreamTest.java | 89 is.read(); 96 is.read(); 98 fail("Test 2: Should be able to read from closed stream."); 109 is.read(buf1, 0, buf1.length); 111 is.read(buf2, 0, buf2.length); 128 // Test for method int java.io.ByteArrayInputStream.read() 131 int c = is.read(); 133 assertTrue("read returned incorrect char", c == fileString 136 fail("Exception during read test"); 144 is.read(buf1, 0, buf1.length) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/ |
CipherInputStream.java | 12 * that read() methods return data that are read in from the 18 * CipherInputStream will attempt to read in data and decrypt them, 72 // must always try to read 1 byte! 81 available = super.read(inBuf, 0, inBuf.length); 85 available = super.read(inBuf, 0, available); 141 if (maxBuf == 0) // not enough bytes read for first block... 150 public int read() method in class:CipherInputStream 164 public int read( method in class:CipherInputStream 168 return read(b, 0, b.length) 171 public int read( method in class:CipherInputStream [all...] |
/external/chromium_org/media/audio/ |
async_socket_io_handler.h | 25 // require a separate thread to read from the socket. 39 // CHECK(io_handler.Read(&buffer_[0], sizeof(buffer_))); 45 // // Issue another read. 46 // CHECK(io_handler.Read(&buffer_[0], sizeof(buffer_))); 63 // bytes were read and is 0 if an error occurred. 68 // on the current thread. The |callback| will be invoked whenever a Read() 73 // Attempts to read from the socket. The return value will be |false| 74 // if an error occurred and |true| if data was read or a pending read 77 bool Read(char* buffer, int buffer_len) [all...] |
/external/chromium_org/media/filters/ |
blocking_url_protocol_unittest.cc | 43 TEST_F(BlockingUrlProtocolTest, Read) { 44 // Set read head to zero as Initialize() will have parsed a bit of the file. 50 // Read 32 bytes from offset zero and verify position. 52 EXPECT_EQ(32, url_protocol_.Read(32, buffer)); 56 // Read an additional 32 bytes and verify position. 57 EXPECT_EQ(32, url_protocol_.Read(32, buffer)); 61 // Seek to end and read until EOF. 65 EXPECT_EQ(32, url_protocol_.Read(32, buffer)); 69 EXPECT_EQ(16, url_protocol_.Read(32, buffer)); 73 EXPECT_EQ(0, url_protocol_.Read(32, buffer)) [all...] |
/external/chromium_org/net/tools/flip_server/ |
balsa_frame_test.cc | 96 size_t read = frame_->ProcessInput(input, strlen(input)); local 97 EXPECT_EQ(2u, read); 142 size_t read = frame_->ProcessInput(input, strlen(input)); local 143 ASSERT_EQ(strlen(input), read); local 192 size_t read = frame_->ProcessInput(input, strlen(input)); local 193 ASSERT_EQ(strlen(input), read); local 256 size_t read = frame_->ProcessInput(input, strlen(input)); local 257 ASSERT_EQ(65u, read); 260 read += frame_->ProcessInput(&input[read], strlen(input) - read) 261 ASSERT_EQ(strlen(input), read); local 293 size_t read = frame_->ProcessInput(input, strlen(input)); local 294 ASSERT_EQ(strlen(input), read); local 320 size_t read = frame_->ProcessInput(input, strlen(input)); local 344 size_t read = frame_->ProcessInput(input, strlen(input)); local 371 size_t read = frame_->ProcessInput(input, strlen(input)); local 391 size_t read = frame_->ProcessInput(input, strlen(input)); local 433 size_t read = frame_->ProcessInput(input, strlen(input)); local 434 ASSERT_EQ(strlen(input), read); local 488 size_t read = frame_->ProcessInput(input, strlen(input)); local 493 ASSERT_EQ(strlen(input), read); local 498 ASSERT_EQ(strlen(input2), read); local 534 size_t read = frame_->ProcessInput(input, strlen(input)); local 539 ASSERT_EQ(strlen(input), read); local 578 size_t read = frame_->ProcessInput(input, strlen(input)); local 583 ASSERT_EQ(strlen(input), read); local [all...] |
/external/marisa-trie/lib/marisa/ |
intvector.cc | 70 read(reader); 75 read(reader); 78 void IntVector::read(int fd) { function in class:marisa::IntVector 80 read(reader); 83 void IntVector::read(std::istream &stream) { function in class:marisa::IntVector 85 read(reader); 88 void IntVector::read(Reader &reader) { function in class:marisa::IntVector 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
intvector.cc | 70 read(reader); 75 read(reader); 78 void IntVector::read(int fd) { function in class:marisa_alpha::IntVector 80 read(reader); 83 void IntVector::read(std::istream &stream) { function in class:marisa_alpha::IntVector 85 read(reader); 88 void IntVector::read(Reader &reader) { function in class:marisa_alpha::IntVector 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/external/sfntly/cpp/src/test/ |
file_io_test.cc | 50 is.Read(&b2, 0, length); 58 is.Read(&b2, 0, 100); 64 is.Read(&b2, 0, 100); 68 is.Read(&b2, 0, 100); 74 is.Read(&b2, 0, 100); 75 is.Read(&b2, 100, 100); 112 font_is1.Read(&b2, 0, length); 120 font_is2.Read(&b2, 0, 100); 122 font_is2.Read(&b2, 100, 100); 126 font_is2.Read(&b2, 0, 100) [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
BitwiseInputStream.java | 20 * An object that provides bitwise incremental read access to a byte array. 29 // The byte array being read from. 66 * Read some data and increment the current position. 71 * @param bits the amount of data to read (gte 0, lte 8) 72 * @return byte of read data (possibly partially filled, from lsb) 74 public int read(int bits) throws AccessException { method in class:BitwiseInputStream 78 throw new AccessException("illegal read " + 90 * Read data in bulk into a byte array and increment the current position. 92 * @param bits the amount of data to read 93 * @return newly allocated byte array of read dat [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
ItemOperationsParser.java | 52 // Read the attachment 100 * Read the attachment data in chunks and write the data back out to our attachment file 103 * @param length the number of expected bytes we're going to read 116 final int read = inputStream.read(bytes, 0, CHUNK_SIZE); local 117 if (read < 0) { 122 // Keep track of how much we've read for progress callback 123 totalRead += read; 125 outputStream.write(bytes, 0, read); 130 // Callback only if we've read at least 1% more and have read more than CHUNK_SIZ [all...] |
/external/javasqlite/src/main/java/SQLite/ |
Blob.java | 19 * Read position, file pointer. 95 * Read single byte from blob. 96 * @return byte read 99 public int read() throws IOException { method in class:BlobR 101 int n = blob.read(b, 0, pos, b.length); 110 * Read byte array from blob. 112 * @return number of bytes read 115 public int read(byte b[]) throws IOException { method in class:BlobR 116 int n = blob.read(b, 0, pos, b.length); 125 * Read slice of byte array from blob 132 public int read(byte b[], int off, int len) throws IOException { method in class:BlobR 306 native int read(byte[] b, int off, int pos, int len) throws IOException; method in class:Blob [all...] |
/external/sepolicy/ |
app.te | 16 # Read system properties managed by zygote. 17 allow appdomain zygote_tmpfs:file read; 24 allow appdomain system:unix_stream_socket { read write setopt }; 28 allow appdomain surfaceflinger:unix_stream_socket { read write setopt }; 35 # Read/write data files created by the platform apps if they 37 allow appdomain platform_app_data_file:file { getattr read write }; 47 # Read/write wallpaper file (opened by system). 48 allow appdomain wallpaper_file:file { read write }; 56 # Everybody can read the xt_qtaguid resource tracking misc dev. 57 # So allow all apps to read from /dev/xt_qtaguid [all...] |