HomeSort by relevance Sort by last modified time
    Searched defs:bytes_read (Results 126 - 150 of 219) sorted by null

1 2 3 4 56 7 8 9

  /external/google-breakpad/src/common/windows/
omap.cc 190 DWORD bytes_read = 0; local
192 if (FAILED(stream->Next(count, 0, &bytes_read, NULL, &count_read))) {
200 if (count * sizeof(OmapTable::value_type) != bytes_read) {
207 bytes_read = 0;
209 if (FAILED(stream->Next(count, bytes_expected, &bytes_read,
  /external/libchrome/base/process/
launch_posix.cc 616 ssize_t bytes_read = local
618 if (bytes_read <= 0)
620 output->append(buffer, bytes_read);
  /external/syslinux/core/fs/pxe/
pxe.c 203 int bytes_read = 0; local
218 bytes_read += chunk;
234 return bytes_read;
  /external/syslinux/win/
syslinux.c 226 DWORD bytes_read; local
230 !ReadFile((HANDLE) pp, buf, secsize, &bytes_read, NULL) ||
231 bytes_read != secsize) {
293 DWORD bytes_read; local
376 if (!ReadFile(d_handle, sectbuf, SECTOR_SIZE, &bytes_read, NULL)) {
380 if (bytes_read != SECTOR_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) &&
  /frameworks/av/media/libstagefright/xmlparser/
MediaCodecsXmlParser.cpp 192 int bytes_read = ::fread(buff, 1, BUFF_SIZE, file); local
193 if (bytes_read < 0) {
199 XML_Status status = ::XML_ParseBuffer(parser, bytes_read, bytes_read == 0);
206 if (bytes_read == 0) {
    [all...]
  /hardware/qcom/camera/msm8998/usbcamcore/src/
QCameraMjpegDecode.cpp 622 int bytes_to_read, bytes_read, rc; local
632 bytes_read = 0;
644 bytes_read = bytes_to_read;
648 return bytes_read;
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 288 size_t bytes_read = backtrace->Read(*sp, reinterpret_cast<uint8_t*>(&stack_data[0]), sizeof(word_t) * words); local
289 words = bytes_read / sizeof(word_t);
  /system/media/audio_route/
audio_route.c 857 int bytes_read; local
906 bytes_read = fread(buf, 1, BUF_SIZE, file);
907 if (bytes_read < 0)
910 if (XML_ParseBuffer(parser, bytes_read,
911 bytes_read == 0) == XML_STATUS_ERROR) {
916 if (bytes_read == 0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 853 Py_ssize_t bytes_read = 0; local
908 bytes_read = fread(buf, 1, data_size, fp);
915 if (err || bytes_read != data_size) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 840 Py_ssize_t bytes_read = 0; local
885 bytes_read = fread(buf, 1, data_size, fp);
887 if (err || bytes_read != data_size) {
    [all...]
  /external/curl/lib/
smb.c 292 ssize_t bytes_read; local
298 result = Curl_read(conn, FIRSTSOCKET, buf + smbc->got, len, &bytes_read);
302 if(!bytes_read)
305 smbc->got += bytes_read;
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/inc/
Ala.h 46 int bytes_read; member in struct:Ala_ImageInfo
67 int bytes_read; member in struct:Ala_ImageInfo
  /external/libmojo/mojo/edk/system/
multiprocess_message_pipe_unittest.cc 394 size_t bytes_read = local
396 fread_buffer.resize(bytes_read);
    [all...]
  /external/pdfium/core/fxge/ge/
cfx_fontmapper.cpp 316 uint32_t bytes_read = local
318 return bytes_read == size ? GetNameFromTT(buffer_ptr, bytes_read, 6)
  /external/stressapptest/src/
os.cc 370 ssize_t bytes_read = read(hpfile, buf, 64); local
373 if (bytes_read <= 0) {
379 if (bytes_read == 64) {
386 buf[bytes_read] = '\0';
  /external/v8/src/
d8-posix.cc 285 ssize_t bytes_read; local
288 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
289 } while (bytes_read == -1 && errno == EINTR);
290 if (bytes_read != 0) {
317 int bytes_read; local
319 bytes_read = static_cast<int>(
321 if (bytes_read == -1) {
339 if (bytes_read + fullness > 0) {
340 int length = bytes_read == 0 ?
341 bytes_read + fullness
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 536 size_t bytes_read = 0; local
538 buffer.get() + HEADER_SIZE, len, offset, &bytes_read);
541 ASSERT(static_cast<uint32_t>(bytes_read) == len);
    [all...]
  /frameworks/base/tools/aapt2/compile/
PngCrunch.cpp 101 const size_t bytes_read = std::min(in_len, len); local
102 memcpy(buffer, in_buffer, bytes_read);
103 if (bytes_read != in_len) {
104 in->BackUp(in_len - bytes_read);
  /hardware/qcom/audio/hal/audio_extn/
sndmonitor.c 154 ssize_t bytes_read; local
174 while ((bytes_read = getline(&line, &len, fp) != -1)) {
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_hdmi.cpp 495 ssize_t bytes_read = 0; local
498 bytes_read = Sys::pread_(fd, config_buffer, kPageSize, 0);
502 DLOGI_IF(kTagDriverConfig, "bytes_read = %d", bytes_read);
504 return (bytes_read > 0);
  /system/bt/btif/src/
btif_sock_l2cap.cc 674 uint32_t bytes_read = 0; local
689 bytes_read = p_buf->len;
708 bytes_read = count;
722 uid_set_add_rx(uid_set, app_uid, bytes_read);
    [all...]
  /system/core/adb/
adb.cpp 608 DWORD bytes_read = 0; local
609 if (!ReadFile(read_pipe.get(), buf, sizeof(buf), &bytes_read, NULL)) {
625 const size_t bytes_written = fwrite(buf, 1, bytes_read, stream.get());
626 if (bytes_written != bytes_read) {
628 bytes_read, output_name);
    [all...]
file_sync_client.cpp 444 int bytes_read = adb_read(lfd, sbuf.data, max); local
445 if (bytes_read == -1) {
449 } else if (bytes_read == 0) {
453 sbuf.size = bytes_read;
454 WriteOrDie(lpath, rpath, &sbuf, sizeof(SyncRequest) + bytes_read);
456 RecordBytesTransferred(bytes_read);
457 bytes_copied += bytes_read;
    [all...]
  /system/core/libbacktrace/
BacktraceOffline.cpp 234 size_t bytes_read = Read(ptr, reinterpret_cast<uint8_t*>(out_value), sizeof(word_t)); local
235 return bytes_read == sizeof(word_t);

Completed in 2616 milliseconds

1 2 3 4 56 7 8 9