HomeSort by relevance Sort by last modified time
    Searched refs:Read (Results 276 - 300 of 452) sorted by null

<<111213141516171819

  /external/openfst/src/include/fst/
interval-set.h 59 istream &Read(istream &strm) {
157 istream &Read(istream &strm) {
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp 274 if (objFile.open(objPath.c_str(), OpenMode::Read) < 0) {
275 // Unable to open the executable file in read mode.
280 if (infoFile.open(infoPath.c_str(), OpenMode::Read) < 0) {
281 // Unable to open the metadata information file in read mode.
306 // Read cache file
365 ALOGE("Unable to read source module\n");
  /build/core/
cleanbuild.mk 60 # Read the current state from the file, if present.
129 # Read the current state from the file, if present.
  /external/chromium/chrome/browser/
browser_signin.cc 198 NOTREACHED() << "Could not read JSON argument";
201 base::JSONReader::Read(json, false)));
  /external/chromium/chrome/browser/ui/login/
login_prompt_ui.cc 201 scoped_ptr<Value> parsed_value(base::JSONReader::Read(json_retval, false));
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.cc 122 scoped_ptr<Value> params(base::JSONReader::Read(json_params, false));
128 // Read the parameters.
  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.cc 158 base::JSONReader::Read(data, false));
  /external/chromium/chrome/common/
zip.cc 216 num_bytes = stream.Read(buf, kZipBufSize, NULL);
  /external/chromium/net/disk_cache/
stats.cc 56 "Read data",
80 if (!file->Read(stats, sizeof(*stats), offset))
  /external/chromium/net/http/
http_cache_transaction.h 37 // o If the mode of the transaction is only READ, then it may only read from
49 // respond using the entry read from the cache.
54 READ = READ_META | READ_DATA,
56 READ_WRITE = READ | WRITE,
109 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
  /external/chromium/net/proxy/
proxy_script_fetcher_impl.cc 241 // Read as many bytes as are available synchronously.
244 if (!request->Read(buf_, kBufSize, &num_bytes)) {
245 // Check whether the read failed synchronously.
  /external/chromium/net/url_request/
url_request.h 132 // Read() initiated by delegate
133 // - OnReadCompleted* (zero or more calls until all data is read)
135 // Read() must be called at least once. Read() returns true when it completed
137 // Read() returns false, the caller can check the Request's status() to see
138 // if an error occurred, or if the IO is just pending. When Read() returns
139 // true with zero bytes read, it indicates the end of the response.
213 // Called when the a Read of the response body is completed after an
214 // IO_PENDING status from a Read() call.
215 // The data read is filled into the buffer which the caller passe
    [all...]
url_request_file_job.cc 12 // asynchronous read, the URLRequestFileJob keeps a buffer as a member var. In
13 // URLRequestFileJob::Read, data is simply copied from the object's buffer into
15 // attempts to read more from the file to fill its buffer. If reading from the
17 // signal from the OS that the overlapped read has completed. It does so by
211 int rv = stream_.Read(dest->data(), dest_size, &io_callback_);
220 // Otherwise, a read error occured. We may just need to wait...
url_request_ftp_job.cc 241 int rv = transaction_->Read(buf, buf_size, &read_callback_);
  /external/chromium/webkit/glue/media/
simple_data_source_unittest.cc 137 data_source_->Read(
  /external/giflib/
dgif_lib.c 46 #define READ(_gif,_buf,_len) \
47 (((GifFilePrivateType*)_gif->Private)->Read ? \
48 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
62 * Open a new gif file for read, given by its name.
128 Private->Read = 0; /* don't use alternate input method (TVT) */
132 if (READ(GifFile, Buf, GIF_STAMP_LEN) != GIF_STAMP_LEN) {
196 Private->Read = readFunc; /* TVT */
200 if (READ(GifFile, Buf, GIF_STAMP_LEN) != GIF_STAMP_LEN) {
250 if (READ(GifFile, Buf, 3) != 3) {
267 if (READ(GifFile, Buf, 3) != 3)
    [all...]
  /external/openfst/src/include/fst/extensions/far/
stlist.h 110 // to read an object of type 'T' form a stream. 'R' must conform to the
253 EntryReader entry_reader_; // Read functor for 'EntryType'
259 mutable EntryType *entry_; // Pointer to the currently read entry
268 // Read(istream &strm, const string &filename);
269 // Checks that 'filename' is an STTable and call the H::Read() on the last
292 header->Read(strm, filename + ":" + key);
  /external/openfst/src/lib/
symbol-table.cc 145 SymbolTableImpl* SymbolTableImpl::Read(istream &strm,
150 LOG(ERROR) << "SymbolTable::Read: read failed";
160 LOG(ERROR) << "SymbolTable::Read: read failed";
172 LOG(ERROR) << "SymbolTable::Read: read failed";
  /external/openfst/src/test/
fst_test.cc 88 static CustomCompactor *Read(istream &strm) {
weight-tester.h 189 v.Read(is);
  /external/quake/quake/src/WinQuake/
net.h 167 int (*Read) (int socket, byte *buf, int len, struct qsockaddr *addr);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 46 istream &Read(istream &strm) {
  /external/v8/tools/oom_dump/
oom_dump.cc 113 CHECK(minidump.Read());
159 // Read heap stats.
  /external/webkit/Source/WebKit/win/
WebElementPropertyBag.cpp 112 HRESULT STDMETHODCALLTYPE WebElementPropertyBag::Read(LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog * /*pErrorLog*/)
WebHTMLRepresentation.cpp 292 ULONG read; local
294 hr = data->Read(dataBuffer.data(), static_cast<ULONG>(dataBuffer.size()), &read);

Completed in 678 milliseconds

<<111213141516171819