Searched defs:read_bytes (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/freetype/src/base/
H A Dftstream.c125 FT_ULong read_bytes; local
138 read_bytes = stream->read( stream, pos, buffer, count );
141 read_bytes = stream->size - pos;
142 if ( read_bytes > count )
143 read_bytes = count;
145 FT_MEM_COPY( buffer, stream->base + pos, read_bytes );
148 stream->pos = pos + read_bytes;
150 if ( read_bytes < count )
154 count, read_bytes ));
168 FT_ULong read_bytes local
238 FT_ULong read_bytes; local
[all...]
/external/freetype/src/base/
H A Dftstream.c125 FT_ULong read_bytes; local
138 read_bytes = stream->read( stream, pos, buffer, count );
141 read_bytes = stream->size - pos;
142 if ( read_bytes > count )
143 read_bytes = count;
145 FT_MEM_COPY( buffer, stream->base + pos, read_bytes );
148 stream->pos = pos + read_bytes;
150 if ( read_bytes < count )
154 count, read_bytes ));
168 FT_ULong read_bytes local
238 FT_ULong read_bytes; local
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dscreenshot_source.cc24 // Read the file from the screenshots directory into the read_bytes vector.
26 std::vector<unsigned char>* read_bytes,
28 read_bytes->clear();
46 read_bytes->resize(file_size);
51 &read_bytes->front()),
53 read_bytes->clear();
55 // We're done, if successful, read_bytes will have the data
25 ReadScreenshot(const std::string& filename, std::vector<unsigned char>* read_bytes, base::WaitableEvent* read_complete) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbytebuffer_unittest.cc191 char read_bytes[3]; local
192 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
194 EXPECT_EQ(write_bytes[i], read_bytes[i]);
201 memset(read_bytes, 0, 3);
202 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
204 EXPECT_EQ(write_bytes[i], read_bytes[i]);
/external/qemu/android/protocol/
H A Dcore-connection.c228 size_t* read_bytes)
246 if (read_bytes != NULL) {
247 *read_bytes = read_size;
225 core_connection_read(CoreConnection* desc, void* buffer, size_t to_read, size_t* read_bytes) argument
/external/qemu/android/utils/
H A Dmapfile.c114 DWORD read_bytes; local
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
116 ret_bytes = (ssize_t)read_bytes;
/external/openssh/
H A Droaming_common.c46 static u_int64_t read_bytes = 0; variable
93 return read_bytes;
99 read_bytes += num;
111 read_bytes = recvd;
167 read_bytes += ret;
191 read_bytes += ret;
/external/qemu/elff/
H A Delf_file.cc100 const ssize_t read_bytes = mapfile_read(file_handle, &header, sizeof(header)); local
102 assert(read_bytes != -1 && read_bytes == sizeof(header));
103 if (read_bytes == -1 || read_bytes != sizeof(header)) {
104 if (read_bytes != -1) {
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor.cc468 BOOL WINAPI Monitor2ReadPort(HANDLE, BYTE*, DWORD, DWORD* read_bytes) { argument
470 *read_bytes = 0;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite_inl.h279 const int read_bytes = num_read * per_value_size; local
280 if (read_bytes > 0) {
281 input->Skip(read_bytes);
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libwebp.cpp65 const uint32_t read_bytes = local
67 if (len != read_bytes) {
72 VP8StatusCode status = WebPGetFeatures(buffer, read_bytes, &features);
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite_inl.h280 const int read_bytes = num_read * per_value_size; local
281 if (read_bytes > 0) {
282 input->Skip(read_bytes);
/external/qemu/android/camera/
H A Dcamera-capture-linux.c997 int read_bytes = local
1000 if (read_bytes < 0) {
1011 total_read_bytes += read_bytes;
/external/qemu/
H A Dqemu-char.c921 int read_bytes; member in struct:__anon24892
945 s->read_bytes = qemu_chr_can_read(chr);
946 return s->read_bytes;
957 if (len > s->read_bytes)
958 len = s->read_bytes;

Completed in 1766 milliseconds