Searched refs:m_code (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Status.cpp | 43 : m_code(err), m_type(type), m_string() {} in Status() 49 : m_code(EC.value()), in Status() 73 m_code = ec.value(); in operator =() 94 std::error_code(m_code, std::generic_category())); in ToError() 137 if (const char *s = ::mach_error_string(m_code)) in AsCString() 143 m_string = llvm::sys::StrError(m_code); in AsCString() 148 m_string = RetrieveWin32ErrorString(m_code); in AsCString() 167 m_code = 0; in Clear() 173 Status::ValueType Status::GetError() const { return m_code; } in GetError() 180 bool Status::Fail() const { return m_code != 0; } in Fail() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 228 m_code.AppendString(""); in IOHandlerInputComplete() 230 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete() 329 m_code.GetSize() + 1); in IOHandlerInputComplete() 451 const uint32_t new_default_line = m_code.GetSize() + 1; in IOHandlerInputComplete() 453 m_code.SplitIntoLines(code); in IOHandlerInputComplete() 463 std::string code(m_code.CopyList()); in IOHandlerInputComplete() 479 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete() 528 current_code.append(m_code.CopyList()); in IOHandlerComplete()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Status.h | 185 ValueType m_code = 0; ///< Status code as an integer value.
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ThreadElfCore.cpp | 55 m_signo(td.signo), m_code(td.code), m_gpregset_data(td.gpregset), in ThreadElfCore() 251 *this, m_signo, /*description=*/nullptr, m_code)); in CalculateStopInfo()
|
| H A D | ThreadElfCore.h | 170 int m_code; variable
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 167 StringList m_code; // All accumulated REPL statements are saved here variable
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 1051 : StopInfo(thread, signo), m_code(code) { in StopInfoUnixSignal() 1111 unix_signals->GetSignalDescription(m_value, m_code); in GetDescription() 1125 std::optional<int> m_code; member in lldb_private::StopInfoUnixSignal
|