Searched refs:read (Results 276 - 300 of 2823) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/io/
H A DDirectoryPump.java27 * This class can read a given file or directory, recursively, applying a given
65 dataEntryReader.read(new FileDataEntry(directory, file));
/external/protobuf/examples/
H A Dlist_people.py35 address_book.ParseFromString(f.read())
/external/protobuf/gtest/xcode/Scripts/
H A Dversiongenerate.py66 opening_string = config_file.read(buffer_size)
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
H A DStrings.java13 while ((inSize = inputStream.read(buffer)) > 0) {
/external/selinux/libselinux/src/
H A Ddeny_unknown.c29 ret = read(fd, buf, sizeof(buf) - 1);
H A Dgetenforce.c29 ret = read(fd, buf, sizeof buf - 1);
/external/skia/gn/
H A Dar.py23 objects = open(rspfile).read().split()
/external/skia/src/core/
H A DSkBuffer.h18 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).
35 /** Return the number of bytes that have been read from the beginning
43 /** Return true if the buffer has read to the end of the data pointer.
56 bool read(void* buffer, size_t size);
59 bool readU8(uint8_t* x) { return this->read(x, 1); }
60 bool readS32(int32_t* x) { return this->read(x, 4); }
61 bool readU32(uint32_t* x) { return this->read(x, 4); }
/external/skia/tools/
H A Dadd_codereview_message.py63 message = sys.stdin.read()
H A Dmilestone.py46 sys.stdout.write(f.read())
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
H A DAbsTransport.java45 * byte buffer to store read bytes into
49 * maximum number of bytes to read
50 * @return number of bytes read
54 public abstract int read(byte[] buffer, int offset, int length) throws IOException; method in class:AbsTransport
86 * Closes the connection to the terminal. Note that the resulting failure to read should call
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DInput.h34 int read(char* buf, int maxSize);
/external/syslinux/com32/gpllib/disk/
H A Dbootloaders.c13 #include <disk/read.h>
/external/syslinux/com32/include/
H A Dunistd.h18 __extern ssize_t read(int, void *, size_t);
/external/syslinux/com32/lib/sys/
H A Drawcon_read.c80 .read = __rawcon_read,
/external/v8/testing/gtest/xcode/Scripts/
H A Dversiongenerate.py66 opening_string = config_file.read(buffer_size)
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Scripts/
H A Dversiongenerate.py66 opening_string = config_file.read(buffer_size)
/external/webrtc/webrtc/base/
H A Dbytebuffer_unittest.cc95 std::string read; local
96 EXPECT_TRUE(buffer.ReadString(&read, 3));
97 EXPECT_EQ("ABC", read);
101 read.clear();
102 EXPECT_TRUE(buffer.ReadString(&read, 3));
103 EXPECT_EQ("ABC", read);
110 read.clear();
111 EXPECT_TRUE(buffer.ReadString(&read, 3));
112 EXPECT_EQ("DEF", read);
124 // Write and read uint8_
[all...]
H A Dhttpbase.cc105 size_t read = 0; local
106 ProcessResult result = ProcessData(buffer + *processed, available, read,
108 LOG(LS_VERBOSE) << "Processed data, result: " << result << " read: "
109 << read << " err: " << error;
114 *processed += read;
116 data_size_ -= read;
256 size_t* read,
293 // adapter from the HttpBase, and further calls to read will either return
303 // Even if we are complete, if some data was read we must return SUCCESS.
308 if (read) *rea
517 size_t read; local
629 size_t read; local
852 ProcessData(const char* data, size_t len, size_t& read, HttpError* error) argument
[all...]
/external/webrtc/webrtc/build/
H A Dextra_gitignore.py42 f.write(open(argv[1], 'r').read())
/external/freetype/src/base/
H A Dftstream.c13 /* this file you indicate that you have read the license and */
43 stream->read = NULL;
63 if ( stream->read )
65 if ( stream->read( stream, pos, 0, 0 ) )
137 if ( stream->read )
138 read_bytes = stream->read( stream, pos, buffer, count );
153 " invalid read; expected %lu bytes, got %lu\n",
174 if ( stream->read )
175 read_bytes = stream->read( stream, stream->pos, buffer, count );
218 if ( stream && stream->read )
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftstream.c13 /* this file you indicate that you have read the license and */
43 stream->read = NULL;
63 if ( stream->read )
65 if ( stream->read( stream, pos, 0, 0 ) )
137 if ( stream->read )
138 read_bytes = stream->read( stream, pos, buffer, count );
153 " invalid read; expected %lu bytes, got %lu\n",
174 if ( stream->read )
175 read_bytes = stream->read( stream, stream->pos, buffer, count );
218 if ( stream && stream->read )
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DFramedStream.java41 * FramedDataSource#read}), but not yet acknowledged by sending a {@code
337 @Override public long read(Buffer sink, long byteCount) method in class:FramedStream.FramedDataSource
341 long read;
347 // Move bytes from the read buffer into the caller's buffer.
348 read = readBuffer.read(sink, Math.min(byteCount, readBuffer.size()));
351 unacknowledgedBytesRead += read;
361 connection.unacknowledgedBytesRead += read;
369 return read;
409 long read
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DInputStreamEntity.java90 while ((l = instream.read(buffer)) != -1) {
97 l = instream.read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining));
116 // If the input stream is from a connection, closing it will read to
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
H A Doauth_helpers.py41 auth_result = json.loads(url_h.read())
59 auth_result = json.loads(url_h.read())

Completed in 1053 milliseconds

<<11121314151617181920>>