Searched refs:Read (Results 51 - 75 of 424) sorted by relevance

1234567891011>>

/external/chromium/net/udp/
H A Dudp_client_socket.h26 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketstream.h51 virtual StreamResult Read(void* buffer, size_t buffer_len,
H A Dstream.h62 // SE_READ: Data is available, so Read is likely to not return SR_BLOCK
74 // Read attempts to fill buffer of size buffer_len. Write attempts to send
77 // Read and Write return a value indicating:
87 virtual StreamResult Read(void* buffer, size_t buffer_len,
135 // processed. Read and ConsumeReadData invalidate the buffer returned by
182 // Return the number of Read()-able bytes remaining before end-of-stream.
214 // Similar to ReadAll. Calls Read until buffer_len bytes have been read, or
219 // ReadLine is a helper function which repeatedly calls Read until it hits
252 virtual StreamResult Read(void* buffer, size_t buffer_len, function in class:talk_base::StreamAdapterInterface
254 return stream_->Read(buffe
[all...]
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dasyncsocket.h68 virtual bool Read(char * data, size_t len, size_t* len_read) = 0;
/external/giflib/
H A Dgif_lib_private.h48 InputFunc Read; /* function to read gif input (TVT) */ member in struct:GifFilePrivateType
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h285 Read(static_cast<unsigned>(WordBitNo));
289 uint32_t Read(unsigned NumBits) { function in class:llvm::BitstreamCursor
308 // Read the next word from the stream.
328 if (NumBits <= 32) return Read(NumBits);
330 uint64_t V = Read(32);
331 return V | (uint64_t)Read(NumBits-32) << 32;
335 uint32_t Piece = Read(NumBits);
348 Piece = Read(NumBits);
352 // ReadVBR64 - Read a VBR that may have a value up to 64-bits in size. The
355 uint32_t Piece = Read(NumBit
[all...]
/external/openfst/src/bin/
H A Dfstarcsort.cc51 MutableFstClass *fst = MutableFstClass::Read(in_name, true);
H A Dfstclosure.cc46 MutableFstClass *fst = MutableFstClass::Read(in_fname, true);
H A Dfstconvert.cc45 FstClass *ifst = FstClass::Read(in_name);
H A Dfstepsnormalize.cc47 FstClass *ifst = FstClass::Read(in_name);
H A Dfstinfo.cc52 FstClass *ifst = FstClass::Read(in_name);
H A Dfstproject.cc47 MutableFstClass *fst = MutableFstClass::Read(in_name, true);
H A Dfstreverse.cc49 FstClass *ifst = FstClass::Read(in_name);
H A Dfstreweight.cc48 MutableFstClass *fst = MutableFstClass::Read(in_fname, true);
H A Dfstsynchronize.cc44 FstClass *ifst = FstClass::Read(in_name);
H A Dfsttopsort.cc44 MutableFstClass *fst = MutableFstClass::Read(in_fname, true);
/external/openfst/src/extensions/pdt/
H A Dpdtinfo.cc45 s::FstClass *ifst = s::FstClass::Read(in_name);
H A Dpdtreverse.cc44 s::FstClass *ifst = s::FstClass::Read(in_name);
/external/openfst/src/include/fst/script/
H A Ddecode.h35 EncodeMapper<Arc> *decoder = EncodeMapper<Arc>::Read(args->arg2, DECODE);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
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));
/external/webkit/Source/WebKit/win/
H A DCFDictionaryPropertyBag.h53 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT*, IErrorLog*);
H A DWebElementPropertyBag.h52 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Read(
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.h40 virtual int Read(void* buf, int length);
/external/chromium/net/disk_cache/
H A Dmapped_file_unittest.cc52 EXPECT_TRUE(file->Read(buffer2, sizeof(buffer2), 8192));
81 EXPECT_TRUE(file->Read(buffer2, sizeof(buffer2), 1024 * 1024, &callback,
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstun.h141 bool Read(talk_base::ByteBuffer* buf);
168 virtual bool Read(talk_base::ByteBuffer* buf) = 0;
214 bool Read(talk_base::ByteBuffer* buf);
241 bool Read(talk_base::ByteBuffer* buf);
264 bool Read(talk_base::ByteBuffer* buf);
293 bool Read(talk_base::ByteBuffer* buf);
313 bool Read(talk_base::ByteBuffer* buf);
344 bool Read(talk_base::ByteBuffer* buf);

Completed in 248 milliseconds

1234567891011>>