Searched refs:Read (Results 251 - 275 of 424) sorted by relevance

<<11121314151617

/external/chromium/net/socket/
H A Dssl_client_socket_unittest.cc307 TEST_F(SSLClientSocketTest, Read) {
346 rv = sock->Read(buf, 4096, &callback);
358 // Test the full duplex mode, with Read and Write pending at the same time.
388 // Issue a "hanging" Read first.
390 rv = sock->Read(buf, 4096, &callback);
412 // Now get the Read result.
455 rv = sock->Read(buf, 1, &callback);
505 rv = sock->Read(buf, 512, &callback);
632 // Read event in the NetLog due to TCPClientSocket picking up the EOF. As a
H A Dsocket_test_util.h72 // Read failure (no data).
76 // Read failure (no data), with sequence information.
86 // Read success (inferred data length).
91 // Read success.
96 // Read success (inferred data length) with sequence information.
101 // Read success with sequence information.
366 // 1) Performing a synchronous I/O operation. (Invoking Read() or Write()
374 // by calling Read() or Write() while stopped is permitted if the operation is
381 // a much earlier step. Furthermore, when the a Read() or Write() is separated
382 // from its completion by other Read() o
[all...]
/external/icu4c/data/
H A Dmakedata.mak268 # Read list of locale resource bundle files
287 # Read the list of currency display name resource bundle files
308 # Read the list of language/script display name resource bundle files
329 # Read the list of region display name resource bundle files
350 # Read the list of time zone display name resource bundle files
371 # Read the list of collation resource bundle files
392 # Read the list of RBNF resource bundle files
413 # Read the list of transliterator resource bundle files
434 # Read the list of miscellaneous resource bundle files
453 # Read th
[all...]
/external/chromium/chrome/browser/history/
H A Dexpire_history_backend.cc37 virtual bool Read(Time end_time, HistoryDatabase* db, function in class:history::__anon2056::AllVisitsReader
57 virtual bool Read(Time end_time, HistoryDatabase* db, function in class:history::__anon2056::AutoSubframeVisitsReader
618 bool more_to_expire = reader->Read(effective_end_time, main_db_,
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpbase.cc270 virtual StreamResult Read(void* buffer, size_t buffer_len, function in class:talk_base::HttpBase::DocumentStream
338 // Read I/O could have been stalled on the user of this DocumentStream,
531 StreamResult read_result = http_stream_->Read(buffer_ + len_,
642 StreamResult result = data_->document->Read(buffer_ + offset,
679 LOG_F(LS_ERROR) << "Read error: " << error;
816 LOG_F(LS_ERROR) << "Read error: " << error;
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DAudioFileReaderThread.c305 result = theItem->Read(theItem, writePtr, &dataChunkSize);
390 result = afm->Read(afm, afm->mFileBuffer, &dataChunkSize);
391 if (result) return 0; /*THROW_RESULT("AudioFileManager::DoConnect(): Read")*/
587 SET_AUDIOFILEMANAGER_METHOD(Read);
/external/chromium/chrome/browser/importer/
H A Dmork_reader.cc116 bool MorkReader::Read(const FilePath& path) { function in class:MorkReader
422 // There is a continuation for this line. Read it and append.
548 reader.Read(file);
/external/chromium/chrome/common/net/
H A Durl_fetcher.cc133 // Read buffer
300 request_->Read(buffer_, kBufferSize, &bytes_read);
337 } while (request_->Read(buffer_, kBufferSize, &bytes_read));
/external/chromium/net/tools/flip_server/
H A Dhttp_interface.cc191 VLOG(2) << "HttpSM Request Fully Read; stream_id: " << stream_id_;
279 sb.Read(buffer, df->size);
296 sb.Read(buffer, df->size);
/external/chromium/webkit/glue/media/
H A Dbuffered_data_source.cc167 void BufferedDataSource::Read(int64 position, size_t size, uint8* data, function in class:webkit_glue::BufferedDataSource
285 // NOTE: it's vital that this be set under lock, as that's how Read() tests
419 loader_->Read(read_position_, read_size_, intermediate_read_buffer_.get(),
633 // before. Update the total size so Read()s past the end of the file will
H A Dbuffered_resource_loader.cc149 void BufferedResourceLoader::Read(int64 position, function in class:webkit_glue::BufferedResourceLoader
576 int read = static_cast<int>(buffer_->Read(read_buffer_, read_size_));
H A Dsimple_data_source_unittest.cc137 data_source_->Read(
/external/libvpx/mkvparser/
H A Dmkvparser.hpp25 virtual int Read(long long pos, long len, unsigned char* buf) = 0;
108 long Read(IMkvReader*, unsigned char*) const;
/external/openfst/src/include/fst/
H A Dinterval-set.h59 istream &Read(istream &strm) { function in struct:fst::IntervalSet::Interval
157 istream &Read(istream &strm) { function in class:fst::IntervalSet
/external/chromium/chrome/browser/
H A Dbrowser_signin.cc201 base::JSONReader::Read(json, false)));
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_ui.cc201 scoped_ptr<Value> parsed_value(base::JSONReader::Read(json_retval, false));
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Denterprise_enrollment_ui.cc122 scoped_ptr<Value> params(base::JSONReader::Read(json_params, false));
128 // Read the parameters.
/external/chromium/chrome/common/net/gaia/
H A Dgaia_oauth_client.cc158 base::JSONReader::Read(data, false));
/external/chromium/chrome/common/
H A Dzip.cc216 num_bytes = stream.Read(buf, kZipBufSize, NULL);
/external/chromium/net/disk_cache/
H A Dstats.cc56 "Read data",
80 if (!file->Read(stats, sizeof(*stats), offset))
/external/chromium/net/http/
H A Dhttp_cache_transaction.h109 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
/external/chromium/net/proxy/
H A Dproxy_script_fetcher_impl.cc241 // Read as many bytes as are available synchronously.
244 if (!request->Read(buf_, kBufSize, &num_bytes)) {
/external/chromium/net/url_request/
H A Durl_request_file_job.cc13 // URLRequestFileJob::Read, data is simply copied from the object's buffer into
211 int rv = stream_.Read(dest->data(), dest_size, &io_callback_);
H A Durl_request_ftp_job.cc241 int rv = transaction_->Read(buf, buf_size, &read_callback_);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php58 // Read the count file

Completed in 528 milliseconds

<<11121314151617