Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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 =()
94 std::error_code(m_code, std::generic_category())); in ToError()
138 if (const char *s = ::mach_error_string(m_code)) in AsCString()
144 m_string = llvm::sys::StrError(m_code); in AsCString()
149 m_string = RetrieveWin32ErrorString(m_code); in AsCString()
168 m_code = 0; in Clear()
174 Status::ValueType Status::GetError() const { return m_code; } in GetError()
181 bool Status::Fail() const { return m_code != 0; } in Fail()
[all …]
/openbsd-src/games/gomoku/
H A Dstoc.c43 int m_code; member
62 for (i = 0; mv[i].m_code >= 0; i++) in stoc()
63 if (s == mv[i].m_code) in stoc()
77 for (i = 0; mv[i].m_code >= 0; i++) in ctos()
79 return(mv[i].m_code); in ctos()
/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DStatus.h194 ValueType m_code = 0; ///< Status code as an integer value.
/openbsd-src/gnu/llvm/lldb/include/lldb/Expression/
H A DREPL.h149 StringList m_code; // All accumulated REPL statements are saved here variable
/openbsd-src/gnu/llvm/lldb/examples/summaries/
H A Dlldb1 … -s "Type: ${var.m_type%E}, Code: ${var.m_code}, Message: ${var.m…