Home
last modified time | relevance | path

Searched refs:m_code (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/source/Utility/
H A DStatus.cpp43 : m_code(err), m_type(type), m_string() {} in Status()
49 : m_code(EC.value()), in Status()
73 m_code = ec.value(); in operator =()
144 m_string = llvm::sys::StrError(m_code); in AsCString()
168 m_code = 0; in Clear()
186 m_code = err; in SetMachError()
193 m_code = result; in SetExpressionError()
210 m_code = result; in SetExpressionErrorWithFormat()
217 m_code = err; in SetError()
224 m_code = errno; in SetErrorToErrno()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DExceptionRecord.h37 m_code = record.ExceptionCode; in ExceptionRecord()
47 : m_code(record.ExceptionCode), m_continuable(record.ExceptionFlags == 0), in ExceptionRecord()
56 GetExceptionCode() const { return m_code; } in GetExceptionCode()
65 DWORD m_code;
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.h25 dw_uleb128_t Code() const { return m_code; } in Code()
26 void SetCode(dw_uleb128_t code) { m_code = code; } in SetCode()
58 dw_uleb128_t m_code = InvalidCode;
H A DDWARFAbbreviationDeclaration.cpp30 m_code = data.GetULEB128(offset_ptr); in extract()
31 if (m_code == 0) in extract()
70 return m_code != 0 && m_tag != llvm::dwarf::DW_TAG_null; in IsValid()
/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp225 m_code.AppendString(""); in IOHandlerInputComplete()
227 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete()
325 m_code.GetSize() + 1); in IOHandlerInputComplete()
445 const uint32_t new_default_line = m_code.GetSize() + 1; in IOHandlerInputComplete()
447 m_code.SplitIntoLines(code); in IOHandlerInputComplete()
457 std::string code(m_code.CopyList()); in IOHandlerInputComplete()
473 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete()
522 current_code.append(m_code.CopyList()); in IOHandlerComplete()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStatus.h189 ValueType m_code = 0; ///< Status code as an integer value.
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DREPL.h149 StringList m_code; // All accumulated REPL statements are saved here variable
/llvm-project-15.0.7/lldb/examples/summaries/
H A Dlldb1 … -s "Type: ${var.m_type%E}, Code: ${var.m_code}, Message: ${var.m…