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

  /external/chromium/net/socket/
tcp_client_socket_libevent.cc 427 int bytes_transferred; local
428 bytes_transferred = HANDLE_EINTR(read(socket_, read_buf_->data(),
432 if (bytes_transferred >= 0) {
434 StringPrintf("%d bytes", bytes_transferred));
435 result = bytes_transferred;
450 int bytes_transferred; local
451 bytes_transferred = HANDLE_EINTR(write(socket_, write_buf_->data(),
455 if (bytes_transferred >= 0) {
456 result = bytes_transferred;
458 StringPrintf("%d bytes", bytes_transferred));
    [all...]
  /external/kernel-headers/original/linux/
dmaengine.h 71 * @bytes_transferred: byte counter
78 unsigned long bytes_transferred; member in struct:dma_chan_percpu
227 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
251 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
278 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
  /external/qemu/
vl-android.c 3154 static uint64_t bytes_transferred = 0; variable
    [all...]
vl.c 3228 static uint64_t bytes_transferred; variable
    [all...]

Completed in 696 milliseconds