/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
Sector.java | 53 * @throws IOException on read error 56 protected void read() throws IOException { method in class:Sector 59 device.read(offset, buffer);
|
/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();
|
/device/generic/goldfish/opengl/system/OpenglSystemCommon/ |
QemuPipeStream.cpp | 126 ssize_t stat = ::read(m_sock, (char *)(buf) + len - res, len); 146 const unsigned char *QemuPipeStream::read( void *buf, size_t *inout_len) function in class:QemuPipeStream 148 //DBG(">> QemuPipeStream::read %d\n", *inout_len); 151 ERR("QemuPipeStream::read failed, buf=NULL"); 162 //DBG("<< QemuPipeStream::read %d\n", *inout_len); 172 int res = ::read(m_sock, p, len);
|
/device/generic/goldfish/opengl/system/egl/ |
eglContext.h | 34 EGLSurface read; member in struct:EGLContext_t
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_AvailTest.java | 53 c = myin.read(); 60 // Verify correct value at start of read 68 c = myin.read(); 85 myin.read(); 87 // while(myin.read() != -1);
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
SSLStreamedInputTest.java | 39 assertEquals(1, sslsi.read()); 44 sslsi.read();
|
/external/apache-http/src/org/apache/http/impl/conn/ |
LoggingSessionInputBuffer.java | 40 * Logs all data read to the wire LOG. 71 public int read(byte[] b, int off, int len) throws IOException { method in class:LoggingSessionInputBuffer 72 int l = this.in.read(b, off, len); 79 public int read() throws IOException { method in class:LoggingSessionInputBuffer 80 int l = this.in.read(); 87 public int read(byte[] b) throws IOException { method in class:LoggingSessionInputBuffer 88 int l = this.in.read(b);
|
/external/apache-http/src/org/apache/http/impl/io/ |
ContentLengthInputStream.java | 42 * gets called. Instead, it will read until the "end" of its chunking on 44 * requests, while not requiring the client to remember to read the entire 75 * The maximum number of bytes that can be read from the stream. Subsequent 76 * read operations will return -1. 95 * @param contentLength The maximum number of bytes that can be read from 96 * the stream. Subsequent read operations will return -1. 121 while (read(buffer) >= 0) { 125 // to read after closed! 133 * Read the next byte from the stream 136 * @see java.io.InputStream#read() 138 public int read() throws IOException { method in class:ContentLengthInputStream 162 public int read (byte[] b, int off, int len) throws java.io.IOException { method in class:ContentLengthInputStream 187 public int read(byte[] b) throws IOException { method in class:ContentLengthInputStream [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
TeeInputStream.java | 19 public int read(byte[] buf) method in class:TeeInputStream 22 return read(buf, 0, buf.length); 25 public int read(byte[] buf, int off, int len) method in class:TeeInputStream 28 int i = input.read(buf, off, len); 38 public int read() method in class:TeeInputStream 41 int i = input.read();
|
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
image_writer_utils.cc | 110 int ImageReader::Read(char* data_block, int data_size) { 111 int read = base::ReadPlatformFileAtCurrentPos(file_, data_block, data_size); local 112 if (read < 0) 114 return read;
|
/external/chromium_org/chrome/common/ |
partial_circular_buffer_unittest.cc | 73 pcb_read_->Read(output_data, sizeof(output_data))); 77 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data))); 87 pcb_read_->Read(output_data, sizeof(output_data))); 94 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data))); 104 pcb_read_->Read(output_data, sizeof(output_data))); 108 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data))); 118 pcb_read_->Read(output_data, sizeof(output_data))); 122 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data))); 132 uint32 read = 0; local 133 for (; read + size_per_read <= sizeof(output_data); read += size_per_read) [all...] |
/external/chromium_org/chrome/test/ext_auto/auto_provider/ |
server.js | 7 // Stream encapsulates read/write operations over socket. 24 read: function(callback) { 25 socket.read(this.socketId_, function(readInfo) {
|
/external/chromium_org/remoting/host/native_messaging/ |
native_messaging_writer_unittest.cc | 56 // Read from the pipe and verify the content. 58 int read = base::ReadPlatformFileAtCurrentPos( local 60 EXPECT_EQ(4, read); 62 read = base::ReadPlatformFileAtCurrentPos(read_handle_, 64 EXPECT_EQ(static_cast<int>(length), read); local 67 scoped_ptr<base::Value> written_message(base::JSONReader::Read(content)); 71 // and verify the read end immediately hits EOF. 74 read = base::ReadPlatformFileAtCurrentPos(read_handle_, &unused, 1); 75 EXPECT_LE(read, 0); 86 // Read two messages 88 int read; local [all...] |
/external/chromium_org/remoting/protocol/ |
message_decoder_unittest.cc | 58 // by iterating the following array for read sizes. 62 // read pattern. 68 int read = std::min(size - pos, read_sequence[pos % sequence_size]); local 71 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(read)); 72 memcpy(buffer->data(), test_data + pos, read); 73 decoder.AddData(buffer, read); 84 pos += read;
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
BinaryStream.h | 29 void read(T *v, size_t num) function in class:gl::BinaryInputStream 55 void read(T * v) function in class:gl::BinaryInputStream 57 read(v, 1); 60 void read(std::string *v) function in class:gl::BinaryInputStream 63 read(&length);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/ |
rbug_connection.c | 76 size_t read = 0; local 93 uint8_t *ptr = ((uint8_t*)data) + read; 94 ret = u_socket_recv(c->socket, ptr, length - read); 101 read += ret; 102 } while(read < length);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/ |
dri_context.c | 220 struct dri_drawable *read = dri_drawable(driReadPriv); local 240 read->texture_stamp = driReadPriv->lastStamp - 1; 243 ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base);
|
/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/emma/core/java12/com/vladium/util/ |
ByteArrayIStream.java | 45 public final int read () method in class:ByteArrayIStream 53 public final int read (final byte [] buf, final int offset, int length) method in class:ByteArrayIStream
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SCPInputStream.java | 20 * Bytes remaining to be read from the stream 39 int c = session.getStdout().read(); 74 public int read() throws IOException method in class:SCPInputStream 81 int read = super.read(); local 82 if (read < 0) 87 remaining -= read; 89 return read; 93 public int read(byte b[], int off, int len) throws IOException method in class:SCPInputStream 106 int read = super.read(b, off, trans) local [all...] |
/external/guava/guava/src/com/google/common/io/ |
LineReader.java | 51 * Creates a new instance that will read lines from the given 74 // The default implementation of Reader#read(CharBuffer) allocates a 75 // temporary char[], so we call Reader#read(char[], int, int) instead. 76 int read = (reader != null) local 77 ? reader.read(buf, 0, buf.length) 78 : readable.read(cbuf); 79 if (read == -1) { 83 lineBuf.add(buf, 0, read);
|
/external/guava/guava-tests/test/com/google/common/io/ |
LimitInputStreamTest.java | 36 int read = lin.read(); local 37 assertEquals(big[0], read); 39 read = lin.read(); 40 assertEquals(big[1], read); 42 read = lin.read(); 43 assertEquals(-1, read); 47 read = lin.read(small) 64 int read = lin.read(); local 124 public int read() throws IOException { method in class:LimitInputStreamTest.UnmarkableInputStream [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CapsuleCollisionShape.java | 98 public void read(JmeImporter im) throws IOException { method in class:CapsuleCollisionShape 99 super.read(im);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
ConeJoint.java | 115 public void read(JmeImporter im) throws IOException { method in class:ConeJoint 116 super.read(im);
|
Point2PointJoint.java | 111 public void read(JmeImporter im) throws IOException { method in class:Point2PointJoint 112 super.read(im);
|