Searched defs:Read (Results 1 - 25 of 138) sorted by last modified time

123456

/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc190 int FileWrapperImpl::Read(void* buf, int length) function in class:webrtc::FileWrapperImpl
/external/zlib/src/contrib/delphi/
H A DZLib.pas91 function Read(var Buffer; Count: Longint): Longint; override; function
120 function Read(var Buffer; Count: Longint): Longint; override; function
439 function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
498 function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
507 FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs154 public override int Read(byte[] buffer, int offset, int count) method in class:DotZLib.GZipStream
/external/webkit/Source/WebKit/win/
H A DCFDictionaryPropertyBag.cpp157 HRESULT STDMETHODCALLTYPE CFDictionaryPropertyBag::Read(LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog * /*pErrorLog*/) function in class:CFDictionaryPropertyBag
H A DCOMPropertyBag.h53 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT*, IErrorLog*);
57 virtual HRESULT STDMETHODCALLTYPE Read(ULONG cProperties, PROPBAG2*, IErrorLog*, VARIANT* pvarValue, HRESULT* phrError);
136 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog) function in class:COMPropertyBag
163 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Read(ULONG cProperties, PROPBAG2* pPropBag, IErrorLog* pErrorLog, VARIANT* pvarValue, HRESULT* phrError) function in class:COMPropertyBag
173 phrError[i] = Read(pPropBag[i].pstrName, &pvarValue[i], pErrorLog);
H A DMemoryStream.cpp89 HRESULT STDMETHODCALLTYPE MemoryStream::Read( function in class:MemoryStream
H A DWebActionPropertyBag.cpp109 HRESULT STDMETHODCALLTYPE WebActionPropertyBag::Read(LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog * /*pErrorLog*/) function in class:WebActionPropertyBag
H A DWebDatabaseManager.cpp66 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog);
116 HRESULT STDMETHODCALLTYPE DatabaseDetailsPropertyBag::Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog*) function in class:DatabaseDetailsPropertyBag
H A DWebElementPropertyBag.cpp112 HRESULT STDMETHODCALLTYPE WebElementPropertyBag::Read(LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog * /*pErrorLog*/) function in class:WebElementPropertyBag
/external/valgrind/main/callgrind/
H A Dsim.c130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType; enumerator in enum:__anon13512
339 * type (Read/Write), the line gets dirty on a write.
415 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
427 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
544 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
557 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
/external/valgrind/tsan/
H A Dts_offline.cc56 //------------- Read binary file Utils ------------ {{{1
60 static bool Read(FILE *fp, T *res) { function
75 if (!Read<unsigned short>(file, &length)) {
171 bool ok = Read<int>(input, pc);
180 // Read information about event in format: [[[info] address] pc] tid.
190 ok &= Read<unsigned short>(input, &extra);
200 ok &= Read<int64_t>(input, &address);
209 ok &= Read<int>(input, &pc);
212 ok &= Read<unsigned short>(input, &tid);
238 ok &= Read<unsigne
[all...]
H A Dts_util.cc526 bool Read() { function in struct:TSLock::Rep
533 //Printf("rep::Read: %c\n", buf[0]);
562 bool Read() { function in struct:TSLock::Rep
570 //Printf("rep::Read: %c\n", buf[0]);
598 while(rep_->Read() == false)
/external/valgrind/unittest/
H A Dracecheck_unittest.cc454 // Write happens before Read (enforced by sleep),
2074 // Write happens before Read (enforced by sleep(1)),
6745 void Read() { function in namespace:PositiveTests_MopVsFree
6758 MyThreadArray t(Read, Free);
/external/v8/tools/
H A Dgrokdump.py78 def Read(self, memory, offset): member in class:Descriptor
363 self.header = MINIDUMP_HEADER.Read(self.minidump, 0)
370 directories.append(MINIDUMP_DIRECTORY.Read(self.minidump, offset))
382 system_info = MINIDUMP_RAW_SYSTEM_INFO.Read(
391 self.exception = MINIDUMP_EXCEPTION_STREAM.Read(
395 self.exception_context = MINIDUMP_CONTEXT_X86.Read(
398 self.exception_context = MINIDUMP_CONTEXT_AMD64.Read(
402 thread_list = MINIDUMP_THREAD_LIST.Read(self.minidump, d.location.rva)
411 self.memory_list = MINIDUMP_MEMORY_LIST.Read(
417 self.memory_list64 = MINIDUMP_MEMORY_LIST64.Read(
[all...]
H A Dll_prof.py504 def Read(self, trace, offset): member in class:Descriptor
608 self.trace_header = TRACE_HEADER_DESC.Read(self.trace, 0)
618 perf_event_attr = PERF_EVENT_ATTR_DESC.Read(self.trace,
632 header = PERF_EVENT_HEADER_DESC.Read(self.trace, self.offset)
637 mmap_info = PERF_MMAP_EVENT_BODY_DESC.Read(self.trace,
639 # Read null-terminated filename.
646 sample = self.sample_event_body_desc.Read(self.trace,
/external/v8/samples/
H A Dshell.cc56 v8::Handle<v8::Value> Read(const v8::Arguments& args);
99 // Bind the global 'read' function to the C++ Read callback.
100 global->Set(v8::String::New("read"), v8::FunctionTemplate::New(Read));
137 v8::Handle<v8::Value> Read(const v8::Arguments& args) { function
/external/v8/src/
H A Dd8.cc225 Handle<Value> Shell::Read(const Arguments& args) { function in class:v8::Shell
808 global_template->Set(String::New("read"), FunctionTemplate::New(Read));
H A Dparser.cc323 if (Read(PreparseDataConstants::kMessageStartPos) >
324 Read(PreparseDataConstants::kMessageEndPos)) {
327 unsigned arg_count = Read(PreparseDataConstants::kMessageArgCountPos);
333 int length = static_cast<int>(Read(pos));
372 int beg_pos = Read(PreparseDataConstants::kMessageStartPos);
373 int end_pos = Read(PreparseDataConstants::kMessageEndPos);
385 int arg_count = Read(PreparseDataConstants::kMessageArgCountPos);
390 + Read(PreparseDataConstants::kMessageTextPos);
400 unsigned ScriptDataImpl::Read(int position) { function in class:v8::internal::ScriptDataImpl
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconst-fst.h68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
161 ConstFstImpl<A> *ConstFstImpl<A>::Read(istream &strm, function in class:fst::ConstFstImpl
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
275 // Read a ConstFst from an input stream; return NULL on error
276 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ConstFst
277 ConstFstImpl<A>* impl = ConstFstImpl<A>::Read(strm, opts);
281 // Read
282 static ConstFst<A> *Read(const string &filename) { function in class:fst::ConstFst
[all...]
H A Dencode.h148 bool Read(istream &strm, const string &source) { function in class:fst::EncodeTable
154 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source;
161 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
168 tuple->weight.Read(strm);
173 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
290 static EncodeMapper<A> *Read(istream &strm, function in class:fst::EncodeMapper
293 bool r = table->Read(strm, source);
297 static EncodeMapper<A> *Read(const string& filename, EncodeType type) { function in class:fst::EncodeMapper
303 return Read(strm, filename, type);
H A Dexpanded-fst.h37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ExpandedFst
44 if (!hdr.Read(strm, opts.source))
49 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
56 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
65 // Read an ExpandedFst from a file; return NULL on error.
66 static ExpandedFst<A> *Read(const string &filename) { function in class:fst::ExpandedFst
69 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
72 return Read(strm, FstReadOptions(filename));
H A Dfloat-weight.h46 istream &Read(istream &strm) { function in class:fst::FloatWeight
H A Dfst.cpp52 bool FstHeader::Read(istream &strm, const string &source) { function in class:fst::FstHeader
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
H A Dfst.h96 bool Read(istream &strm, const string &source);
147 // Read an Fst from an input stream; returns NULL on error
149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::Fst
155 if (!hdr.Read(strm, opts.source))
163 LOG(ERROR) << "Fst::Read: Unknown FST type \"" << hdr.FstType()
171 // Read an Fst from a file; return NULL on error
172 static Fst<A> *Read(const string &filename) { function in class:fst::Fst
175 LOG(ERROR) << "Fst::Read: Can't open file: " << filename;
178 return Read(strm, FstReadOptions(filename));
455 // Read
[all...]
H A Dmutable-fst.h70 // Read an MutableFst from an input stream; return NULL on error.
71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::MutableFst
77 if (!hdr.Read(strm, opts.source))
82 LOG(ERROR) << "MutableFst::Read: Not an MutableFst: " << ropts.source;
89 LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << hdr.FstType()
98 // Read an MutableFst from a file; returns NULL on error.
99 static MutableFst<A> *Read(const string &filename) { function in class:fst::MutableFst
102 LOG(ERROR) << "MutableFst::Read: Can't open file: " << filename;
105 return Read(strm, FstReadOptions(filename));

Completed in 422 milliseconds

123456