| /external/bluetooth/glib/glib/ |
| giochannel.h | 147 gsize *bytes_read, 177 gsize *bytes_read); 250 gsize *bytes_read,
|
| giochannel.c | 194 * @bytes_read: returns the number of bytes actually read 206 gsize *bytes_read) 213 g_return_val_if_fail (bytes_read != NULL, G_IO_ERROR_UNKNOWN); 217 if (bytes_read) 218 *bytes_read = 0; 224 status = channel->funcs->io_read (channel, buf, count, bytes_read, &err); [all...] |
| giounix.c | 74 gsize *bytes_read, 179 gsize *bytes_read, 194 *bytes_read = 0; 214 *bytes_read = result;
|
| /external/chromium/base/ |
| platform_file_win.cc | 124 DWORD bytes_read; local 125 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0) 126 return bytes_read;
|
| file_util_posix.cc | 367 ssize_t bytes_read = local 369 if (bytes_read <= 0) 371 total_read += bytes_read; 560 ssize_t bytes_read = HANDLE_EINTR(read(fd, data, size)); 563 return bytes_read; 867 ssize_t bytes_read = HANDLE_EINTR(read(infile, &buffer[0], buffer.size())); local 868 if (bytes_read < 0) { 872 if (bytes_read == 0) 880 bytes_read - bytes_written_per_read)); 886 } while (bytes_written_per_read < bytes_read); [all...] |
| /external/chromium/chrome/browser/renderer_host/ |
| download_resource_handler.cc | 143 bool DownloadResourceHandler::OnReadCompleted(int request_id, int* bytes_read) { 144 if (!*bytes_read) 153 buffer_->contents.push_back(std::make_pair(buffer, *bytes_read));
|
| /external/chromium/net/url_request/ |
| url_request_ftp_job.cc | 236 int *bytes_read) { 238 DCHECK(bytes_read); 243 *bytes_read = rv;
|
| url_request.cc | 476 bool URLRequest::Read(IOBuffer* dest, int dest_size, int* bytes_read) { 478 DCHECK(bytes_read); 480 *bytes_read = 0; 493 return job_->Read(dest, dest_size, bytes_read);
|
| url_request_http_job.h | 87 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
|
| /external/bluetooth/glib/gio/ |
| gunixmount.c | 293 gsize bytes_read; local 299 status = g_io_channel_read_chars (channel, buf, sizeof (buf), &bytes_read, &error); 302 g_string_append_len (data->error_string, buf, bytes_read); 303 if (bytes_read == sizeof (buf)) 307 g_string_append_len (data->error_string, buf, bytes_read);
|
| gunixvolume.c | 340 gsize bytes_read; local 346 status = g_io_channel_read_chars (channel, buf, sizeof (buf), &bytes_read, &error); 349 g_string_append_len (data->error_string, buf, bytes_read); 350 if (bytes_read == sizeof (buf)) 354 g_string_append_len (data->error_string, buf, bytes_read);
|
| /external/chromium/net/base/ |
| nss_memio.c | 394 void memio_PutReadResult(memio_Private *secret, int bytes_read) 399 if (bytes_read > 0) { 400 mb->tail += bytes_read; 403 } else if (bytes_read == 0) { 406 } else /* if (bytes_read < 0) */ { 407 mb->last_err = bytes_read;
|
| /external/chromium/sdch/open-vcdiff/src/gtest/ |
| gtest-death-test.cc | 324 ssize_t bytes_read; local 327 bytes_read = read(read_fd_, &flag, 1); 328 } while (bytes_read == -1 && errno == EINTR); 330 if (bytes_read == 0) { 332 } else if (bytes_read == 1) {
|
| /external/v8/src/ |
| platform-freebsd.cc | 295 int bytes_read = -1; local 297 bytes_read++; 298 if (bytes_read >= MAP_LENGTH - 1) 300 result = read(fd, buffer + bytes_read, 1); 302 } while (buffer[bytes_read] != '\n'); 303 buffer[bytes_read] = 0; 309 buffer[bytes_read] = 0;
|
| /external/chromium/net/tools/dump_cache/ |
| upgrade.cc | 244 void DoGetKey(int bytes_read); 251 void DoReadData(int bytes_read); 282 int bytes_read = static_cast<int>(bytes_transfered); local 283 if (bytes_read < sizeof(Message) && state_ != MASTER_END && 297 DoGetKey(bytes_read); 306 DoReadData(bytes_read); 383 void MasterSM::DoGetKey(int bytes_read) { 497 void MasterSM::DoReadData(int bytes_read) { 641 int bytes_read = static_cast<int>(bytes_transfered); local 642 if (bytes_read < sizeof(Message)) [all...] |
| /hardware/qcom/media/mm-video/vidc/vdec/test/ |
| decoder_driver_test.c | 1060 int bytes_read = 0; local 1079 bytes_read = fread(&dataptr[readOffset],1, 1,inputBufferFile); 1080 if( !bytes_read) 1160 int bytes_read=0; local [all...] |
| /external/bluetooth/glib/tests/ |
| gio-test.c | 68 guint *bytes_read) 78 *bytes_read = 0; 97 *bytes_read += nb;
|
| /external/chromium/chrome/browser/net/ |
| connection_tester.cc | 260 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read); 294 int bytes_read) { 295 if (bytes_read <= 0) {
|
| chrome_dns_cert_provenance_checker.cc | 94 void OnReadCompleted(net::URLRequest* request, int bytes_read) {
|
| /external/qemu/slirp/ |
| tftp.c | 105 int bytes_read = 0; local 123 bytes_read = read(fd, buf, len); 128 return bytes_read;
|
| /external/qemu/slirp-android/ |
| tftp.c | 105 int bytes_read = 0; local 123 bytes_read = read(fd, buf, len); 128 return bytes_read;
|
| /external/zlib/contrib/iostream3/ |
| zfstream.cc | 197 int bytes_read = gzread(file, buffer, buffer_size); local 199 if (bytes_read <= 0) 206 this->setg(buffer, buffer, buffer + bytes_read);
|
| /external/chromium/chrome/browser/debugger/ |
| devtools_http_protocol_handler.h | 80 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
|
| /external/skia/src/images/ |
| SkImageDecoder_libwebp.cpp | 180 const size_t bytes_read = stream->read(input, bytes_to_read); local 181 if (bytes_read == 0) { 185 VP8StatusCode status = WebPIAppend(idec, input, bytes_read); 187 bytes_remaining -= bytes_read;
|
| /frameworks/base/media/libstagefright/chromium_http/ |
| support.h | 121 virtual void OnReadCompleted(net::URLRequest *request, int bytes_read);
|