HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 26 - 50 of 176) sorted by null

12 3 4 5 6 7 8

  /external/bluetooth/glib/tests/
timeloop-basic.c 36 size_t bytes_read = 0; local
39 while (bytes_read < len)
41 count = read (fd, buf + bytes_read, len - bytes_read);
50 bytes_read += count;
timeloop-closure.c 37 gsize bytes_read = 0; local
41 while (bytes_read < len)
43 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
52 bytes_read += count;
timeloop.c 36 gsize bytes_read = 0; local
40 while (bytes_read < len)
42 err = g_io_channel_read (channel, buf + bytes_read, len - bytes_read, &count);
51 bytes_read += count;
  /external/chromium/chrome/browser/
browser_main_posix.cc 118 size_t bytes_read = 0; local
123 reinterpret_cast<char*>(&signal) + bytes_read,
124 sizeof(signal) - bytes_read));
134 bytes_read += ret;
135 } while (bytes_read < sizeof(signal));
  /external/chromium/chrome/browser/net/
url_request_slow_download_job.cc 82 int *bytes_read) {
85 *bytes_read = 0;
94 *bytes_read = kSecondDownloadSize;
104 *bytes_read = send_size;
112 *bytes_read = 0;
metadata_url_request.cc 32 virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
73 int *bytes_read) {
117 *bytes_read = buf_size;
chrome_network_delegate.h 49 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
url_request_slow_download_job.h 30 virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
  /external/chromium/net/test/
test_server_posix.cc 61 ssize_t bytes_read = 0; local
63 while (bytes_read < bytes_max) {
83 ssize_t num_bytes = HANDLE_EINTR(read(fd, buffer + bytes_read,
84 bytes_max - bytes_read));
87 bytes_read += num_bytes;
test_server_win.cc 110 DWORD bytes_read = 0; local
111 while (bytes_read < bytes_max) {
113 if (!ReadFile(read_fd, buffer + bytes_read, bytes_max - bytes_read,
122 bytes_read += num_bytes;
  /external/v8/test/cctest/
test-sockets.cc 64 int bytes_read = 0; local
65 while (bytes_read < data_size_) {
66 bytes_read += client_->Receive(data_ + bytes_read, data_size_ - bytes_read);
  /external/chromium/chrome/browser/extensions/
extension_creator.cc 173 int bytes_read = -1; local
174 while ((bytes_read = fread(buffer.get(), 1, buffer_size,
176 if (!signature_creator->Update(buffer.get(), bytes_read)) {
225 size_t bytes_read = 0; local
227 while ((bytes_read = fread(buffer.get(), 1, buffer_size,
229 if (fwrite(buffer.get(), sizeof(char), bytes_read, crx_handle.get()) !=
230 bytes_read) {
  /external/chromium/net/url_request/
url_request_test_job.cc 158 int *bytes_read) {
166 DCHECK(bytes_read);
167 *bytes_read = 0;
180 *bytes_read = to_read;
221 int bytes_read; local
222 if (!ReadRawData(async_buf_, async_buf_size_, &bytes_read))
225 NotifyReadComplete(bytes_read);
https_prober.h 63 virtual void OnReadCompleted(URLRequest* request, int bytes_read);
url_request_file_job.h 40 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read);
url_request_ftp_job.h 61 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager_backend.cc 80 int *bytes_read) OVERRIDE;
101 void CompleteRead(net::IOBuffer* buf, int buf_size, int* bytes_read);
329 int bytes_read; local
332 CompleteRead(pending_buf_, pending_buf_size_, &bytes_read);
334 NotifyReadComplete(bytes_read);
344 int* bytes_read) {
355 CompleteRead(buf, buf_size, bytes_read);
360 int* bytes_read) {
368 *bytes_read = buf_size;
screenshot_source.cc 48 int bytes_read = 0; local
49 if (!(bytes_read = file_util::ReadFile(file,
  /external/bluetooth/glib/gio/win32/
gwinhttpfileinputstream.c 132 DWORD bytes_read; local
158 (winhttp_stream->request, buffer, count, &bytes_read))
165 return bytes_read;
  /external/bluetooth/glib/glib/
gconvert.c 562 * @bytes_read: location to store the number of bytes in the
600 gsize *bytes_read,
683 if (bytes_read)
684 *bytes_read = p - str;
724 * @bytes_read: location to store the number of bytes in the
751 gsize *bytes_read,
766 if (bytes_read)
767 *bytes_read = 0;
776 bytes_read, bytes_written,
796 * @bytes_read: location to store the number of bytes in th
    [all...]
  /external/chromium/chrome/browser/renderer_host/
download_throttling_resource_handler.cc 119 int* bytes_read) {
126 if (!*bytes_read)
131 tmp_buffer_length_ = *bytes_read;
137 return download_handler_->OnReadCompleted(request_id, bytes_read);
  /external/chromium/net/tools/flip_server/
ring_buffer.cc 139 int bytes_read = 0; local
145 memcpy(bytes + bytes_read, rptr, rsize);
146 bytes_read += rsize;
151 return bytes_read;
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.cc 54 const int64 bytes_read = ReadResponse(buffer_out, local
56 if (bytes_read != response->content_length) {
66 const int64 bytes_read = ReadResponse(buffer_out, local
69 if (bytes_read != response->content_length) {
71 response->content_length << ", but sent " << bytes_read;
106 int bytes_read = buffer_.length(); local
107 CHECK(length <= bytes_read);
109 return bytes_read;
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 146 size_t bytes_read = 0; // # of bytes read so far local
153 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
154 bytes_read += bytes_last_read;
155 } while (bytes_last_read > 0 && bytes_read < file_size);
157 const ::std::string content(buffer, buffer+bytes_read);
  /system/extras/tests/directiotest/
directiotest.c 73 size_t bytes_read = 0; local
78 ret = read(fd, (char *)buf + bytes_read, count - bytes_read);
86 bytes_read += ret;
87 } while (bytes_read < count);
89 return bytes_read;

Completed in 474 milliseconds

12 3 4 5 6 7 8