Searched defs:Read (Results 226 - 250 of 381) sorted by relevance

1234567891011>>

/external/lldb/source/Target/
H A DMemory.cpp116 MemoryCache::Read (addr_t addr, function in class:MemoryCache
/external/lldb/tools/debugserver/source/MacOSX/arm/
H A DDNBArchImpl.h110 Read = 0, enumerator in enum:DNBArchMachARM::__anon25400
141 kern_return_t gpr_errs[2]; // Read/Write errors
142 kern_return_t vfp_errs[2]; // Read/Write errors
143 kern_return_t exc_errs[2]; // Read/Write errors
144 kern_return_t dbg_errs[2]; // Read/Write errors
158 SetError (set, Read, -1);
216 return GetError(set, Read) == KERN_SUCCESS;
/external/lldb/tools/debugserver/source/MacOSX/ppc/
H A DDNBArchImpl.h77 Read = 0, enumerator in enum:DNBArchMachPPC::__anon25418
88 kern_return_t gpr_errs[2]; // Read/Write errors
89 kern_return_t fpr_errs[2]; // Read/Write errors
90 kern_return_t exc_errs[2]; // Read/Write errors
91 kern_return_t vec_errs[2]; // Read/Write errors
106 SetError (e_regSetALL, Read, -1);
159 return GetError(set, Read) == KERN_SUCCESS;
/external/lldb/tools/debugserver/source/
H A DRNBSocket.cpp332 RNBSocket::Read (std::string &p) function in class:RNBSocket
/external/lzma/CPP/7zip/Compress/
H A DLzma2Decoder.cpp88 RINOK(inStream->Read(_inBuf, kInBufSize, &_inSize));
146 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:NCompress::NLzma2::CDecoder
155 RINOK(_inStream->Read(_inBuf, kInBufSize, &_inSize));
H A DLzmaDecoder.cpp101 RINOK(inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
173 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:NCompress::NLzma::CDecoder
182 RINOK(_inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
230 RINOK(_inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs24 public override int Read(byte[] buffer, int offset, int count) method in class:SevenZip.CDoubleStream
31 int num = s1.Read(buffer, offset, count);
40 numTotal += s2.Read(buffer, offset, count);
220 inStream = new FileStream(inputName, FileMode.Open, FileAccess.Read);
238 trainStream = new FileStream(train, FileMode.Open, FileAccess.Read);
324 if (inStream.Read(properties, 0, 5) != 5)
338 throw (new Exception("Can't Read 1"));
/external/openfst/src/include/fst/
H A Dadd-on.h47 static NullAddOn *Read(istream &istrm) { function in class:fst::NullAddOn
87 static AddOnPair<A1, A2> *Read(istream &istrm) { function in class:fst::AddOnPair
92 a1 = A1::Read(istrm);
98 a2 = A2::Read(istrm);
139 // Add to an Fst F a type T object. T must have a 'T* Read(istream &)',
200 static AddOnImpl<F, T> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::AddOnImpl
204 hdr.Read(strm, nopts.source);
215 LOG(ERROR) << "AddOnImpl::Read: Bad add-on header: " << nopts.source;
221 F *fst = F::Read(strm, fopts);
228 if (have_addon) { // Read ad
[all...]
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
H A Dpair-weight.h71 istream &Read(istream &strm) { function in class:fst::PairWeight
72 value1_.Read(strm);
73 return value2_.Read(strm);
H A Dtuple-weight.h83 istream &Read(istream &strm) { function in class:fst::TupleWeight
85 values_[i].Read(strm);
/external/openfst/src/include/fst/script/
H A Dfst-class.h152 static FstClass *Read(istream &stream, function in class:fst::script::FstClass
155 FSTERROR() << "FstClass::Read: options header not specified";
182 static FstClass *Read(const string &fname);
184 static FstClass *Read(istream &istr, const string &source);
250 // error checking. Called from arc-templated Read() static methods.
254 UnderlyingT *u = UnderlyingT::Read(stream, opts);
293 static MutableFstClass *Read(istream &stream, function in class:fst::script::MutableFstClass
295 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(stream, opts);
313 static MutableFstClass *Read(const string &fname, bool convert = false);
353 static VectorFstClass *Read(istrea function in class:fst::script::VectorFstClass
[all...]
/external/openfst/src/test/
H A Dfst_test.cc88 static CustomCompactor *Read(istream &strm) { function in class:fst::CustomCompactor
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc136 int FileInputStream::CopyingFileInputStream::Read(void* buffer, int size) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
145 // Read error (not EOF).
301 int IstreamInputStream::CopyingIstreamInputStream::Read( function in class:google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DAudioFilePlayer.h121 OSStatus (*Read)(struct S_AudioFileManager *afm, char *buffer, ByteCount *len); member in struct:S_AudioFileManager
/external/skia/src/utils/win/
H A DSkIStream.cpp54 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv function in class:SkBaseIStream
133 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) { function in class:SkIStream
/external/skia/tests/
H A DSerializationTest.cpp37 static void Read(SkValidatingReadBuffer& reader, T** flattenable) { function in struct:SerializationUtils
46 static void Read(SkValidatingReadBuffer& reader, SkMatrix* matrix) { function in struct:SerializationUtils
55 static void Read(SkValidatingReadBuffer& reader, SkPath* path) { function in struct:SerializationUtils
64 static void Read(SkValidatingReadBuffer& reader, SkRegion* region) { function in struct:SerializationUtils
73 static void Read(SkValidatingReadBuffer& reader, SkString* string) { function in struct:SerializationUtils
82 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) { function in struct:SerializationUtils
91 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) { function in struct:SerializationUtils
100 static bool Read(SkValidatingReadBuffer& reader, int32_t* data, uint32_t arraySize) { function in struct:SerializationUtils
109 static bool Read(SkValidatingReadBuffer& reader, SkPoint* data, uint32_t arraySize) { function in struct:SerializationUtils
118 static bool Read(SkValidatingReadBuffe function in struct:SerializationUtils
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h46 istream &Read(istream &strm) { function in class:fst::FloatWeight
H A Dproduct-weight.h54 istream &Read(istream &strm) { function in class:fst::ProductWeight
55 value1_.Read(strm);
56 return value2_.Read(strm);
H A Dsymbol-table.h62 static SymbolTableImpl* Read(istream &strm, const string& source);
235 static SymbolTable* Read(istream &strm, const string& source) { function in class:fst::SymbolTable
236 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
244 static SymbolTable* Read(const string& filename) { function in class:fst::SymbolTable
247 LOG(ERROR) << "SymbolTable::Read: Can't open file " << filename;
250 return Read(strm, filename);
/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/chromium_org/base/files/
H A Dfile_path_watcher_browsertest.cc795 Read, enumerator in enum:base::__anon2250::Permission
809 case Read:
854 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Read, false));
859 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Read, true));
/external/chromium_org/content/browser/
H A Dbyte_stream.cc119 virtual StreamState Read(scoped_refptr<net::IOBuffer>* data,
345 ByteStreamReaderImpl::Read(scoped_refptr<net::IOBuffer>* data, function in class:content::__anon7032::ByteStreamReaderImpl
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_tcp_socket.cc166 void PepperTCPSocket::Read(int32 bytes_to_read) { function in class:content::PepperTCPSocket
186 int net_result = socket_->Read(
/external/chromium_org/courgette/
H A Dstreams.cc129 bool SourceStream::Read(void* destination, size_t count) { function in class:courgette::SourceStream

Completed in 2501 milliseconds

1234567891011>>