Searched defs:Write (Results 1 - 25 of 125) sorted by relevance

12345

/external/lzma/CPP/7zip/Archive/Common/
H A DOutStreamWithCRC.cpp7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COutStreamWithCRC
11 result = _stream->Write(data, size, &size);
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CDummyOutStream
17 result = _stream->Write(data, size, &realProcessedSize);
/external/ceres-solver/internal/ceres/
H A Dblock_jacobian_writer.h32 // misleading, since the Write() operation on the block jacobian writer does not
60 // This makes the final Write() a nop.
65 void Write(int /* residual_id */, function in class:ceres::internal::BlockJacobianWriter
H A Ddynamic_compressed_row_jacobian_writer.cc63 void DynamicCompressedRowJacobianWriter::Write(int residual_id, function in class:ceres::internal::DynamicCompressedRowJacobianWriter
H A Ddense_jacobian_writer.h69 void Write(int residual_id, function in class:ceres::internal::DenseJacobianWriter
/external/compiler-rt/test/profile/
H A Dinstrprof-without-libc.c31 int Write = __llvm_profile_write_buffer(Buffer); local
33 return Write;
/external/google-breakpad/src/processor/
H A Dsimple_serializer.h53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) { function in class:google_breakpad::SimpleSerializer
H A Dmap_serializers-inl.h70 char *StdMapSerializer<Key, Value>::Write(const std::map<Key, Value> &m, function in class:google_breakpad::StdMapSerializer
78 // Write header:
80 dest = SimpleSerializer<uint32_t>::Write(m.size(), dest);
93 key_address = key_serializer_.Write(iter->first, key_address);
94 dest = value_serializer_.Write(iter->second, dest);
111 // Write serialized data into memory.
112 Write(m, serialized_data);
138 char *RangeMapSerializer<Address, Entry>::Write( function in class:google_breakpad::RangeMapSerializer
146 // Write header:
148 dest = SimpleSerializer<uint32_t>::Write(
212 char *ContainedRangeMapSerializer<AddrType, EntryType>::Write( function in class:google_breakpad::ContainedRangeMapSerializer
[all...]
H A Dmap_serializers.h61 // NOTE: caller has to allocate enough memory before invoke Write() method.
62 char* Write(const std::map<Key, Value> &m, char* dest) const;
86 // Write the serialized data to specified memory location. Return the "end"
88 // NOTE: caller has to allocate enough memory before invoke Write() method.
89 char* Write(const AddressMap<Addr, Entry> &m, char *dest) const { function in class:google_breakpad::AddressMapSerializer
90 return std_map_serializer_.Write(m.map_, dest);
115 // Write the serialized data to specified memory location. Return the "end"
117 // NOTE: caller has to allocate enough memory before invoke Write() method.
118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const;
144 // Write th
[all...]
H A Dmodule_serializer.cc83 char *ModuleSerializer::Write(const BasicSourceLineResolver::Module &module, function in class:google_breakpad::ModuleSerializer
85 // Write the is_corrupt flag.
86 dest = SimpleSerializer<bool>::Write(module.is_corrupt_, dest);
87 // Write header.
90 // Write each map.
91 dest = files_serializer_.Write(module.files_, dest);
92 dest = functions_serializer_.Write(module.functions_, dest);
93 dest = pubsym_serializer_.Write(module.public_symbols_, dest);
95 dest = wfi_serializer_.Write(&(module.windows_frame_info_[i]), dest);
96 dest = cfi_init_rules_serializer_.Write(modul
[all...]
H A Dsimple_serializer-inl.h59 static char *Write(bool boolean, char *dest) { function in class:google_breakpad::SimpleSerializer
76 static char *Write(const string &str, char *dest) { function in class:google_breakpad::SimpleSerializer
90 static char *Write(const char *cstring, char *dest) { function in class:google_breakpad::SimpleSerializer
107 static char *Write(const Line &line, char *dest) { function in class:google_breakpad::SimpleSerializer
108 dest = SimpleSerializer<MemAddr>::Write(line.address, dest);
109 dest = SimpleSerializer<MemAddr>::Write(line.size, dest);
110 dest = SimpleSerializer<int32_t>::Write(line.source_file_id, dest);
111 dest = SimpleSerializer<int32_t>::Write(line.line, dest);
126 static char *Write(const PublicSymbol &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
127 dest = SimpleSerializer<string>::Write(pubsymbo
152 static char *Write(const WindowsFrameInfo &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
177 static char *Write(const linked_ptr<Line> &lineptr, char *dest) { function in class:google_breakpad::SimpleSerializer
200 static char *Write(const Function &func, char *dest) { function in class:google_breakpad::SimpleSerializer
222 static char *Write(const linked_ptr<Function> &func, char *dest) { function in class:google_breakpad::SimpleSerializer
237 static char *Write(const linked_ptr<PublicSymbol> &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
251 static char *Write(const linked_ptr<WindowsFrameInfo> &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
[all...]
/external/lldb/source/Core/
H A DStreamAsynchronousIO.cpp48 StreamAsynchronousIO::Write (const void *s, size_t length) function in class:StreamAsynchronousIO
50 m_accumulated_data.Write (s, length);
H A DStreamCallback.cpp59 StreamCallback::Write (const void *s, size_t length) function in class:StreamCallback
62 FindStreamForThread(cur_tid).Write (s, length);
H A DStreamFile.cpp68 StreamFile::Write (const void *s, size_t length) function in class:StreamFile
70 m_file.Write (s, length);
H A DConnectionSharedMemory.cpp94 ConnectionSharedMemory::Write (const void *src, size_t src_len, ConnectionStatus &status, Error *error_ptr) function in class:ConnectionSharedMemory
/external/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp15 STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COffsetOutStream
17 return _stream->Write(data, size, processedSize);
H A DInOutTempBuffer.cpp55 if (!_outFile.Write(data, size, processed))
62 bool CInOutTempBuffer::Write(const void *data, UInt32 size) function in class:CInOutTempBuffer
111 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processed) function in class:CSequentialOutTempBufferImp
113 if (!_buf->Write(data, size))
/external/sfntly/cpp/src/sfntly/port/
H A Dmemory_output_stream.cc27 void MemoryOutputStream::Write(ByteVector* buffer) { function in class:sfntly::MemoryOutputStream
31 void MemoryOutputStream::Write(ByteVector* buffer, function in class:sfntly::MemoryOutputStream
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) { function in class:sfntly::MemoryOutputStream
57 void MemoryOutputStream::Write(byte_t b) { function in class:sfntly::MemoryOutputStream
/external/chromium-trace/trace-viewer/tracing/build/
H A Dupdate_gypi.py61 def Write(self, f): member in class:BuildFile
119 build_file.Write(f)
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvwriter.cpp25 int32 MkvWriter::Write(const void* buffer, uint32 length) { function in class:mkvmuxer::MkvWriter
/external/lldb/include/lldb/Core/
H A DStreamBuffer.h51 Write (const void *s, size_t length) function in class:lldb_private::StreamBuffer
H A DStreamTee.h97 Write (const void *s, size_t length) function in class:lldb_private::StreamTee
114 const size_t bytes_written = strm->Write (s, length);
/external/zlib/src/contrib/delphi/
H A DZLib.pas92 function Write(const Buffer; Count: Longint): Longint; override; function
121 function Write(const Buffer; Count: Longint): Longint; override; function
444 function TCompressionStream.Write(const Buffer; Count: Longint): Longint;
522 function TDecompressionStream.Write(const Buffer; Count: Longint): Longint;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_mutex_test.cc33 void Write() { function in class:__sanitizer::TestData
81 data->Write();
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutex_test.cc31 void Write() { function in class:__tsan::TestData
77 data->Write();
88 data->Write();
96 TEST(Mutex, Write) {

Completed in 1650 milliseconds

12345