Searched refs:Write (Results 126 - 150 of 363) sorted by relevance

1234567891011>>

/external/lldb/include/lldb/Host/
H A DFile.h255 /// Write bytes to a file at the current file position.
274 Write (const void *buf, size_t &num_bytes);
283 /// @see File::Write (const void *, size_t, off_t &)
306 /// @see File::Write (const void *, size_t, off_t &)
329 /// @see File::Write (const void *, size_t, off_t &)
408 /// Write bytes to a file at the specified file offset.
433 Write (const void *src, size_t &num_bytes, off_t &offset);
/external/lzma/C/
H A DTypes.h134 void (*Write)(void *p, Byte b); member in struct:__anon11544
151 size_t (*Write)(void *p, const void *buf, size_t size); member in struct:__anon11546
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderOutStream.cpp84 STDMETHODIMP CFolderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:NArchive::N7z::CFolderOutStream
93 RINOK(_crcStream->Write(data, cur, &cur));
/external/lzma/CPP/7zip/Common/
H A DLimitedStreams.cpp130 STDMETHODIMP CLimitedSequentialOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CLimitedSequentialOutStream
149 result = _stream->Write(data, size, &size);
H A DFileStreams.cpp306 STDMETHODIMP COutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COutFileStream
321 ssize_t res = File.Write(data, (size_t)size);
372 STDMETHODIMP CStdOutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CStdOutFileStream
380 STDMETHODIMP CStdOutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CStdOutFileStream
H A DOutBuffer.cpp75 result = _stream->Write(_buffer + _streamPos, size, &processedSize);
/external/pdfium/core/src/fxcrt/
H A Dfxcrt_platforms.cpp107 size_t CFXCRT_FileAccess_CRT::Write(const void* pBuffer, size_t szBuffer) function in class:CFXCRT_FileAccess_CRT
173 if (dst.Write(pBuffer, num) != num) {
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.h189 bool Write(const void* buffer, int size);
280 bool Write(const void* buffer, int size);
/external/lldb/include/lldb/Core/
H A DCommunication.h231 Write (const void *src,
H A DConnectionFileDescriptor.h57 Write (const void *src,
/external/lldb/source/Core/
H A DConnectionSharedMemory.cpp94 ConnectionSharedMemory::Write (const void *src, size_t src_len, ConnectionStatus &status, Error *error_ptr) function in class:ConnectionSharedMemory
/external/llvm/unittests/Support/
H A DEndianTest.cpp35 TEST(Endian, Write) {
/external/lzma/CS/7zip/Compress/LZ/
H A DLzOutWindow.cs74 _stream.Write(_buffer, (int)_streamPos, (int)size);
/external/openfst/src/bin/
H A Dfstmap.cc94 ofst->Write(out_name);
H A Dfstrmepsilon.cc86 ofst->Write(out_fname);
H A Dfstshortestpath.cc89 ofst.Write(out_fname);
/external/openfst/src/extensions/pdt/
H A Dpdtcompose.cc97 ofst.Write(out_name);
/external/openfst/src/test/
H A Dfst_test.h215 CHECK(fst.Write(filename));
230 CHECK(gfst->Write(filename));
245 CHECK(fst.Write(ostr, opts));
264 CHECK(fst.Write(ostr, opts));
/external/sfntly/cpp/src/sfntly/data/
H A Dmemory_byte_array.cc40 os->Write(b_, offset, length);
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc90 os.Write(&(test_buffer[0]), (int32_t)50, (int32_t)(kTestBufferLen - 50));
/external/google-breakpad/src/client/mac/tests/
H A Dminidump_generator_test.cc100 ASSERT_TRUE(generator.Write(dump_filename.c_str()));
180 // Write a minidump of the child process.
184 ASSERT_TRUE(generator.Write(dump_filename.c_str()));
259 // Write a minidump of the child process.
263 ASSERT_TRUE(generator.Write(dump_filename.c_str()));
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_arm.cpp540 SetError (set, Write, -1);
543 SetError (set, Write, DoWriteGPR(GetThreadID(), set, gpr));
545 return GetError(GPRRegSet, Write);
554 SetError (set, Write, -1);
557 SetError (set, Write, DoWriteFPU(GetThreadID(), set, fpu));
559 return GetError(FPURegSet, Write);
568 SetError (set, Write, -1);
571 SetError (set, Write, DoWriteEXC(GetThreadID(), set, exc));
573 return GetError(EXCRegSet, Write);
582 SetError (set, Write,
[all...]
/external/llvm/lib/Analysis/
H A DLint.cpp63 static const unsigned Write = 2; member in namespace:__anon10353::MemRef
259 MemRef::Read | MemRef::Write);
287 MemRef::Write);
311 MemRef::Write);
322 MemRef::Write);
332 0, nullptr, MemRef::Read | MemRef::Write);
336 0, nullptr, MemRef::Write);
342 0, nullptr, MemRef::Read | MemRef::Write);
350 0, nullptr, MemRef::Read | MemRef::Write);
405 if (Flags & MemRef::Write) {
[all...]
/external/openfst/src/include/fst/
H A Dfst.h85 bool write_header; // Write the header?
86 bool write_isymbols; // Write input symbols?
87 bool write_osymbols; // Write output symbols?
88 bool align; // Write data aligned where appropriate;
132 bool Write(ostream &strm, const string &source) const;
243 // Write an Fst to an output stream; return false on error
244 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const { function in class:fst::Fst
245 LOG(ERROR) << "Fst::Write: No write stream method for " << Type()
250 // Write an Fst to a file; return false on error
252 virtual bool Write(cons function in class:fst::Fst
[all...]
/external/skia/src/utils/win/
H A DSkIStream.cpp59 HRESULT STDMETHODCALLTYPE SkBaseIStream::Write(void const* pv function in class:SkBaseIStream
139 HRESULT STDMETHODCALLTYPE SkIStream::Write(void const* pv function in class:SkIStream
244 HRESULT STDMETHODCALLTYPE SkWIStream::Write(void const* pv function in class:SkWIStream

Completed in 882 milliseconds

1234567891011>>