Home
last modified time | relevance | path

Searched refs:AppendData (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp116 m_data.AppendData(&sys_info, sizeof(llvm::minidump::SystemInfo)); in AddSystemInfo()
268 helper_data.AppendData(uuid.begin(), uuid.size()); in AddModuleList()
288 m_data.AppendData(&m, sizeof(llvm::minidump::Module)); in AddModuleList()
475 helper_data.AppendData( in AddThreadList()
488 m_data.AppendData(&t, sizeof(llvm::minidump::Thread)); in AddThreadList()
534 helper_data.AppendData( in AddException()
554 m_data.AppendData(&exp_stream, minidump_exception_size); in AddException()
612 m_data.AppendData(data_up->GetBytes(), bytes_read); in AddMemoryList()
623 m_data.AppendData(&memory_descriptor, in AddMemoryList()
652 m_data.AppendData(&misc_info, in AddMiscInfo()
[all …]
/llvm-project-15.0.7/lldb/source/Utility/
H A DDataEncoder.cpp134 m_data_sp->AppendData(&value, sizeof(value)); in AppendU8()
168 void DataEncoder::AppendData(llvm::StringRef data) { in AppendData() function in DataEncoder
172 m_data_sp->AppendData(bytes, length); in AppendData()
175 void DataEncoder::AppendData(llvm::ArrayRef<uint8_t> data) { in AppendData() function in DataEncoder
179 m_data_sp->AppendData(bytes, length); in AppendData()
187 m_data_sp->AppendData(bytes, length); in AppendCString()
H A DDataBufferHeap.cpp61 void DataBufferHeap::AppendData(const void *src, uint64_t src_len) { in AppendData() function in DataBufferHeap
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DDataEncoder.h159 void AppendData(llvm::StringRef data);
167 void AppendData(llvm::ArrayRef<uint8_t> data);
H A DDataBufferHeap.h102 void AppendData(const void *src, uint64_t src_len);
/llvm-project-15.0.7/lldb/source/Core/
H A DDataFileCache.cpp210 encoder.AppendData(uuid_bytes); in Encode()
276 encoder.AppendData(kStringTableIdentifier); in Encode()
H A DValue.cpp95 m_data_buffer.AppendData(bytes, len); in AppendBytes()
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DDataEncoderTest.cpp125 TEST(DataEncoderTest, AppendData) { in TEST() argument
130 encoder.AppendData(StringRef()); in TEST()
133 encoder.AppendData(StringRef("")); in TEST()
136 encoder.AppendData(StringRef("\x11\x00\x22", 3)); in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp128 encoder.AppendData(kIdentifierNameToDIE); in Encode()
H A DManualDWARFIndex.cpp582 index_encoder.AppendData(kIdentifierManualDWARFIndex); in Encode()
623 encoder.AppendData(index_encoder.GetData()); in Encode()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymtab.cpp1190 encoder.AppendData(kIdentifierCStrMap); in EncodeCStrMap()
1258 symtab_encoder.AppendData(kIdentifierSymbolTable); in Encode()
1286 encoder.AppendData(symtab_encoder.GetData()); in Encode()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Android/
H A DAdbClient.cpp588 encoder.AppendData(llvm::StringRef(request_id)); in SendSyncRequest()