HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_copy (Results 1 - 5 of 5) sorted by null

  /external/chromium/net/spdy/
spdy_http_stream.cc 116 const int bytes_to_copy = std::min(buf_len, data->size()); local
117 memcpy(&(buf->data()[bytes_read]), data->data(), bytes_to_copy);
118 buf_len -= bytes_to_copy;
119 if (bytes_to_copy == data->size()) {
122 const int bytes_remaining = data->size() - bytes_to_copy;
124 memcpy(new_buffer->data(), &(data->data()[bytes_to_copy]),
129 bytes_read += bytes_to_copy;
spdy_proxy_client_socket.cc 184 const int bytes_to_copy = std::min(user_buffer_->BytesRemaining(), local
186 memcpy(user_buffer_->data(), data->data(), bytes_to_copy);
187 user_buffer_->DidConsume(bytes_to_copy);
188 if (data->BytesRemaining() == bytes_to_copy) {
192 data->DidConsume(bytes_to_copy);
  /external/chromium/chrome/browser/automation/
url_request_automation_job.cc 314 const int bytes_to_copy = std::min(bytes.size(), pending_buf_size_); local
315 memcpy(pending_buf_->data(), &bytes[0], bytes_to_copy);
320 NotifyReadComplete(bytes_to_copy);
  /packages/apps/Gallery2/jni/filters/
geometry.c 26 size_t bytes_to_copy = sizeof(char) * width; local
30 memcpy(destination + temp - i, source + i, bytes_to_copy);
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_act.c 2763 UINT32 bytes_to_copy; local
    [all...]

Completed in 387 milliseconds