Searched refs:m_core_file (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | PostMortemProcess.h | 29 : Process(target_sp, listener_sp), m_core_file(core_file) {} in PostMortemProcess() 33 FileSpec GetCoreFile() const override { return m_core_file; } in GetCoreFile() 36 FileSpec m_core_file;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/ |
H A D | MinidumpFileBuilder.h | 79 : m_process_sp(process_sp), m_core_file(std::move(core_file)){}; in MinidumpFileBuilder() 166 lldb::FileUP m_core_file; variable
|
H A D | MinidumpFileBuilder.cpp | 88 offset_t new_offset = m_core_file->SeekFromStart(m_saved_data_size); in AddHeaderAndCalculateDirectories() 570 m_core_file->SeekFromStart(m_thread_list_start); in FixThreadStacks() 577 error = m_core_file->Write(&thread, bytes_written); in FixThreadStacks() 921 m_core_file->SeekFromStart(0); in DumpHeader() 923 error = m_core_file->Write(&header, bytes_written); in DumpHeader() 941 m_core_file->SeekFromStart(HEADER_SIZE); in DumpDirectories() 944 error = m_core_file->Write(&dir, bytes_written); in DumpDirectories() 1131 m_core_file->SeekFromStart(starting_offset); in AddMemoryList_64() 1133 error = m_core_file->Write(descriptors.data(), bytes_written); in AddMemoryList_64() 1162 m_core_file->SeekFromStart(m_saved_data_size); in FlushBufferToDisk() [all …]
|
/freebsd/contrib/llvm-project/lldb/tools/driver/ |
H A D | Driver.cpp | 218 m_option_data.m_core_file = arg_value; in ProcessArgs() 492 if (!m_option_data.m_core_file.empty()) { in MainLoop() 494 EscapeString(m_option_data.m_core_file).c_str()); in MainLoop() 505 } else if (!m_option_data.m_core_file.empty()) { in MainLoop() 507 EscapeString(m_option_data.m_core_file).c_str()); in MainLoop()
|
H A D | Driver.h | 69 std::string m_core_file; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | ProcessElfCore.cpp | 85 if (!m_core_module_sp && FileSystem::Instance().Exists(m_core_file)) { in CanDebug() 86 ModuleSpec core_module_spec(m_core_file, target_sp->GetArchitecture()); in CanDebug()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 220 m_core_file(LLDB_OPT_SET_1, false, "core", 'c', 0, eArgTypeFilename, in CommandObjectTargetCreate() 237 m_option_group.Append(&m_core_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1); in CommandObjectTargetCreate() 252 FileSpec core_file(m_core_file.GetOptionValue().GetCurrentValue()); in DoExecute() 455 OptionGroupFile m_core_file; member in CommandObjectTargetCreate
|