HomeSort by relevance Sort by last modified time
    Searched defs:bytes_to_send (Results 1 - 3 of 3) sorted by null

  /frameworks/native/cmds/bugreport/
bugreport.cpp 79 ssize_t bytes_to_send = bytes_read; local
83 buffer + bytes_read - bytes_to_send,
84 bytes_to_send));
87 bytes_read, bytes_to_send, strerror(errno));
90 bytes_to_send -= bytes_written;
91 } while (bytes_written != 0 && bytes_to_send > 0);
  /system/core/debuggerd/
debuggerd.cpp 399 ssize_t bytes_to_send = bytes_read; local
402 bytes_written = TEMP_FAILURE_RETRY(write(fd, buffer + bytes_read - bytes_to_send,
403 bytes_to_send));
412 bytes_to_send -= bytes_written;
413 } while (bytes_written != 0 && bytes_to_send > 0);
414 if (bytes_to_send != 0) {
415 ALOGE("Failed to write all data to fd: read %zd, sent %zd", bytes_read, bytes_to_send);
  /external/netperf/src/
nettest_omni.c 341 int bytes_to_send; variable
    [all...]

Completed in 319 milliseconds