| /external/curl/lib/ |
| security.c | 231 size_t bytes_read; local 246 bytes_read = buffer_read(&conn->in_buffer, buffer, len); 247 len -= bytes_read; 248 total_read += bytes_read; 249 buffer += bytes_read; 255 if(bytes_read > 0) 257 return bytes_read; 259 bytes_read = buffer_read(&conn->in_buffer, buffer, len); 260 len -= bytes_read; 261 total_read += bytes_read; [all...] |
| /external/fio/exp/ |
| expression-parser.l | 30 #define YY_INPUT(buffer, bytes_read, bytes_requested) \ 33 unsigned int __bread = bytes_read; \ 35 bytes_read = __bread; \
|
| /external/webrtc/webrtc/modules/audio_processing/transient/ |
| file_utils.cc | 91 size_t bytes_read = file->Read(byte_array.get(), 2); local 92 if (bytes_read < 2) { 153 size_t bytes_read = file->Read(byte_array.get(), 4); local 154 if (bytes_read < 4) { 176 size_t bytes_read = file->Read(byte_array.get(), 8); local 177 if (bytes_read < 8) {
|
| /system/bt/osi/src/ |
| eager_reader.c | 250 ssize_t bytes_read; local 251 OSI_NO_INTR(bytes_read = read(reader->inbound_fd, buffer->data, 253 if (bytes_read > 0) { 255 buffer->length = bytes_read; 260 eventfd_write(reader->bytes_available_fd, bytes_read); 262 if (bytes_read == 0)
|
| /system/extras/tests/directiotest/ |
| directiotest.c | 74 size_t bytes_read = 0; local 79 ret = read(fd, (char *)buf + bytes_read, count - bytes_read); 87 bytes_read += ret; 88 } while (bytes_read < count); 90 return bytes_read;
|
| /external/dbus/dbus/ |
| dbus-transport-socket.c | 249 int bytes_read; local 255 bytes_read = _dbus_read_socket (socket_transport->fd, 259 bytes_read > 0 ? bytes_read : 0); 261 if (bytes_read > 0) 263 _dbus_verbose (" read %d bytes in auth phase\n", bytes_read); 267 else if (bytes_read < 0) 288 _dbus_assert (bytes_read == 0); 699 int bytes_read; local 740 bytes_read = _dbus_string_get_length (&socket_transport->encoded_incoming) [all...] |
| dbus-file-unix.c | 110 int bytes_read; local 114 bytes_read = _dbus_read (fd, str, 116 if (bytes_read <= 0) 131 total += bytes_read;
|
| /external/boringssl/src/ssl/ |
| s3_both.c | 351 int bytes_read = ssl3_read_bytes( local 353 if (bytes_read <= 0) { 355 return bytes_read; 357 ssl->init_num += bytes_read; 407 int bytes_read = local 409 if (bytes_read <= 0) { 412 return bytes_read; 414 ssl->init_num += bytes_read; 415 n -= bytes_read;
|
| /external/sfntly/cpp/src/test/ |
| font_data_test.cc | 158 int32_t bytes_read = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size()); local 159 EXPECT_GE(bytes_read, 0); 160 std::copy(buffer.begin(), buffer.begin() + bytes_read, b->begin() + index); 161 index += bytes_read; 172 int32_t bytes_read = local 174 EXPECT_GE(bytes_read, 0); 175 index += bytes_read; 205 int32_t bytes_read = rfd->ReadBytes(index, &(b[0]), index, sliding_size); local 207 index += bytes_read;
|
| test_font_utils.cc | 78 size_t bytes_read = fread(&((*input_buffer)[0]), 1, file_size, input_file); local 79 EXPECT_EQ(bytes_read, file_size);
|
| /external/compiler-rt/lib/sanitizer_common/tests/ |
| sanitizer_libc_test.cc | 131 uptr bytes_read = 0; local 132 EXPECT_TRUE(ReadFromFile(fd, buf, len1, &bytes_read)); 133 EXPECT_EQ(len1, bytes_read); 137 EXPECT_TRUE(ReadFromFile(fd, buf, len2, &bytes_read)); 138 EXPECT_EQ(len2, bytes_read);
|
| /system/update_engine/common/ |
| subprocess.cc | 119 size_t bytes_read; local 121 bytes_read = 0; 124 record->stdout_fd, buf, arraysize(buf), &bytes_read, &eof); 125 record->stdout.append(buf, bytes_read); 133 } while (bytes_read);
|
| /system/update_engine/payload_consumer/ |
| postinstall_runner_action.cc | 211 size_t bytes_read; local 213 bytes_read = 0; 216 utils::ReadAll(progress_fd_, buf, arraysize(buf), &bytes_read, &eof); 217 progress_buffer_.append(buf, bytes_read); 235 } while (bytes_read);
|
| /toolchain/binutils/binutils-2.25/bfd/ |
| dwarf2.c | 813 unsigned int abbrev_number, bytes_read, abbrev_name; local 828 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); 829 abbrev_ptr += bytes_read; 842 read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); 843 abbrev_ptr += bytes_read; 848 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); 849 abbrev_ptr += bytes_read; 850 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); 851 abbrev_ptr += bytes_read; 885 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); 931 unsigned int bytes_read; local 1548 unsigned int i, bytes_read, offset_size; local 2132 unsigned int abbrev_number, bytes_read, i; local 2297 unsigned int abbrev_number, bytes_read, i; local 2549 unsigned int abbrev_number, bytes_read, i; local [all...] |
| /external/bsdiff/ |
| test_utils.cc | 62 size_t bytes_read = fread(buf, 1, sizeof(buf), fp); local 63 if (!bytes_read) 65 out->insert(out->end(), buf, buf + bytes_read);
|
| extents_file.cc | 34 bool ExtentsFile::Read(void* buf, size_t count, size_t* bytes_read) { 35 return IOOperation(&FileInterface::Read, buf, count, bytes_read);
|
| file.cc | 38 bool File::Read(void* buf, size_t count, size_t* bytes_read) { 46 *bytes_read = static_cast<size_t>(rc);
|
| extents_file.h | 52 bool Read(void* buf, size_t count, size_t* bytes_read) override;
|
| /external/webrtc/webrtc/system_wrappers/source/ |
| file_impl.cc | 196 size_t bytes_read = fread(buf, 1, length, id_); 197 if (bytes_read != length && !looping_) { 200 return static_cast<int>(bytes_read);
|
| /system/update_engine/payload_generator/ |
| full_update_generator.cc | 97 ssize_t bytes_read = -1; local 102 &bytes_read)); 103 TEST_AND_RETURN_FALSE(bytes_read == static_cast<ssize_t>(size_));
|
| /external/webrtc/webrtc/tools/frame_analyzer/ |
| video_quality_analysis.cc | 112 size_t bytes_read = fread(result_frame, 1, frame_size, input_file); local 113 if (bytes_read != static_cast<size_t>(frame_size) && 144 size_t bytes_read = local 146 if (bytes_read != static_cast<size_t>(frame_size) && ferror(input_file)) { 166 size_t bytes_read = fread(result_frame, 1, frame_size, input_file); local 167 if (bytes_read != static_cast<size_t>(frame_size) &&
|
| /external/sfntly/cpp/src/sample/chromium/ |
| chrome_subsetter.cc | 57 size_t bytes_read = fread(&((*input_buffer)[0]), 1, file_size, input_file); local 59 return bytes_read == file_size;
|
| /system/media/brillo/audio/audioservice/ |
| audio_daemon.cpp | 112 int bytes_read = local 114 if (bytes_read != sizeof(event)) {
|
| /toolchain/binutils/binutils-2.25/opcodes/ |
| v850-dis.c | 134 int bytes_read, 146 int status = info->read_memory_func (memaddr + bytes_read, buffer, 2, info); 161 info->memory_error_func (status, memaddr + bytes_read, info); 180 info->memory_error_func (status, memaddr + bytes_read, info); 187 int status = info->read_memory_func (memaddr + bytes_read, buffer, 4, info); 191 bytes_read += 4; 198 info->memory_error_func (status, memaddr + bytes_read, info); 224 int bytes_read, 261 if (bytes_read == 2) 285 value = get_operand_value (operand, insn, bytes_read, memaddr [all...] |
| /external/autotest/client/cros/ |
| network.py | 250 bytes_read = len(result.read(bytes_to_read)) 251 bytes_fetched += bytes_read 252 if bytes_read != bytes_to_read: 255 (bytes_to_read, bytes_read))
|