/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/ |
tunnelsessionclient_unittest.cc | 150 // Read bytes out into recv_stream_ as they arrive. 152 // tunnel. All data has been read out at this point. 178 // Flow() doesn't work here because it won't write if the read blocks. 181 size_t read, position; local 183 while ((res = remote_tunnel_->Read(block, sizeof(block), &read, NULL)) == 185 recv_stream_.Write(block, read, NULL, NULL);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
compat.hpp | 220 read(char *p, size_t n) { function in class:clover::compat::istream
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessageLite.java | 245 public int read() throws IOException { method in class:AbstractMessageLite.Builder.LimitedInputStream 249 final int result = super.read(); 257 public int read(final byte[] b, final int off, int len) method in class:AbstractMessageLite.Builder.LimitedInputStream 263 final int result = super.read(b, off, len); 284 final int firstByte = input.read();
|
/external/chromium_org/third_party/skia/include/core/ |
SkReader32.h | 96 void read(void* dst, size_t size) { function in class:SkReader32 126 * Read the length of a string (written by SkWriter32::writeString) into 133 * Read the string (written by SkWriter32::writeString) and return it in
|
/external/chromium_org/third_party/skia/src/core/ |
SkBuffer.h | 18 The RBuffer is given the buffer to read from, with either a specified size 20 to attempt to read a value from an empty RBuffer (data == null). 44 /** Return the number of bytes that have been read from the beginning 52 /** Return true if the buffer has read to the end of the data pointer. 58 /** Read the specified number of bytes from the data pointer. If buffer is not 61 virtual bool read(void* buffer, size_t size) { function in class:SkRBuffer 71 bool readPtr(void** ptr) { return read(ptr, sizeof(void*)); } 72 bool readScalar(SkScalar* x) { return read(x, 4); } 73 bool readU32(uint32_t* x) { return read(x, 4); } 74 bool readS32(int32_t* x) { return read(x, 4); [all...] |
SkFontStream.cpp | 39 static bool read(SkStream* stream, void* buffer, size_t amount) { function 40 return stream->read(buffer, amount) == amount; 60 if (!read(stream, header, sizeof(SkSharedTTHeader))) { 75 if (ttcIndex > 0) { // need to read more of the shared header 79 if (!read(stream, header, amount)) { 89 if (!read(stream, header, sizeof(SkSFNTHeader))) { 129 return read(stream, fDir, size); 142 if (!read(stream, &shared, sizeof(shared))) { 202 if (!read(stream, data, length)) {
|
/external/chromium_org/third_party/skia/src/utils/win/ |
SkDWriteFontFileStream.cpp | 33 size_t SkDWriteFontFileStream::read(void* buffer, size_t size) { function in class:SkDWriteFontFileStream 59 //The read may have failed because we asked for too much data. 66 size_t read = fileSize - fPos; local 67 hr = fFontFileStream->ReadFileFragment(&start, fPos, read, &fragmentLock); 69 memcpy(buffer, start, read); 72 return read; 209 if (fStream->read(streamData.get(), static_cast<size_t>(fragmentSize)) != fragmentSize) {
|
/external/chromium_org/v8/samples/ |
shell.cc | 57 void Read(const v8::FunctionCallbackInfo<v8::Value>& args); 105 // Bind the global 'read' function to the C++ Read callback. 106 global->Set(v8::String::NewFromUtf8(isolate, "read"), 107 v8::FunctionTemplate::New(Read)); 143 // The callback that is invoked by v8 whenever the JavaScript 'read' 146 void Read(const v8::FunctionCallbackInfo<v8::Value>& args) { 229 int read = static_cast<int>(fread(&chars[i], 1, size - i, file)); local 230 i += read; 275 // The read-eval-execute loop of the shell [all...] |
/external/chromium_org/v8/src/ |
v8utils.cc | 89 // When we read a line that ends with a "\" we remove the escape and 95 // Since we read a new line we are done reading the line. This 112 // Copy the newly read line into the result. 129 OS::PrintError("Cannot read from file %s.\n", filename); 140 int read = static_cast<int>(fread(&result[i], 1, *size - i, file)); local 141 if (read != (*size - i) && ferror(file) != 0) { 146 i += read;
|
/external/clang/test/CodeGenCXX/ |
bitfield.cpp | 168 unsigned read(S* s) { function in namespace:N1 212 unsigned read(S* s) { function in namespace:N2 251 unsigned read(S* s) { function in namespace:N3 299 unsigned read(Base* s) { function in namespace:N4 344 unsigned read(U* u) { function in namespace:N5 389 unsigned read(S* s) { function in namespace:N6
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteArray.java | 24 * Wrapper for a {@code byte[]}, which provides read-only access and 304 public int read() throws IOException { method in class:ByteArray.MyInputStream 314 public int read(byte[] arr, int offset, int length) { method in class:ByteArray.MyInputStream
|
/external/freetype/include/freetype/ |
ftsystem.h | 13 /* this file you indicate that you have read the license and */ 223 * A function used to seek and read data from a given input stream. 230 * The offset of read in stream (always from start). 233 * The address of the read buffer. 236 * The number of bytes to read from the stream. 239 * The number of bytes effectively read by the stream. 301 * read :: 329 FT_Stream_IoFunc read; member in struct:FT_StreamRec_
|
/external/freetype/src/smooth/ |
ftsmooth.c | 13 /* this file you indicate that you have read the license and */ 348 FT_Byte* read = bitmap->buffer + ( height - height_org ) * pitch; local 355 ft_memcpy( write, read, pitch ); 358 ft_memcpy( write, read, pitch ); 361 ft_memcpy( write, read, pitch ); 363 read += pitch;
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
StreamGobbler.java | 20 * read() operations are faster). 26 * If you do not call the StreamGobbler's <code>read()</code> method often enough 51 int avail = is.read(buff); 130 public int read() throws IOException method in class:StreamGobbler 181 public int read(byte[] b) throws IOException method in class:StreamGobbler 183 return read(b, 0, b.length); 201 public int read(byte[] b, int off, int len) throws IOException method in class:StreamGobbler
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
CipherInputStream.java | 45 input_buffer_size = bi.read(input_buffer, 0, BUFF_SIZE); 90 throw new IOException("Cannot read full block, EOF reached."); 106 public int read(byte[] dst) throws IOException method in class:CipherInputStream 108 return read(dst, 0, dst.length); 111 public int read(byte[] dst, int off, int len) throws IOException method in class:CipherInputStream 133 public int read() throws IOException method in class:CipherInputStream 146 throw new IOException("Cannot read plain since crypto buffer is not aligned.");
|
/external/javassist/src/main/javassist/bytecode/ |
AttributeInfo.java | 28 // update AttributeInfo.read(), .copy(), and (maybe) write(). 71 static AttributeInfo read(ConstPool cp, DataInputStream in) method in class:AttributeInfo
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
GImpactCollisionShape.java | 121 public void read(JmeImporter im) throws IOException {
method in class:GImpactCollisionShape 122 super.read(im);
|
MeshCollisionShape.java | 117 public void read(JmeImporter im) throws IOException {
method in class:MeshCollisionShape 118 super.read(im);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
HingeJoint.java | 160 public void read(JmeImporter im) throws IOException { method in class:HingeJoint 161 super.read(im);
|
PhysicsJoint.java | 131 public void read(JmeImporter im) throws IOException { method in class:PhysicsJoint
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/ |
PhysicsGhostObject.java | 292 public void read(JmeImporter e) throws IOException { method in class:PhysicsGhostObject 293 super.read(e);
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
PoseTrack.java | 90 public void read(JmeImporter i) throws IOException { method in class:PoseTrack.PoseFrame 180 public void read(JmeImporter i) throws IOException { method in class:PoseTrack
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
AssetKey.java | 197 public void read(JmeImporter im) throws IOException { method in class:AssetKey
|
TextureKey.java | 182 public void read(JmeImporter im) throws IOException { method in class:TextureKey 183 super.read(im);
|
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingVolume.java | 324 public void read(JmeImporter e) throws IOException {
method in class:BoundingVolume
|