Searched refs:m_code (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp41 Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {}
44 : m_code(err), m_type(type), m_string() {}
47 : m_code(EC.value()), m_type(ErrorType::eErrorTypeGeneric),
51 : m_code(0), m_type(eErrorTypeInvalid), m_string() {
70 m_code = ec.value();
91 std::error_code(m_code, std::generic_category()));
135 if (const char *s = ::mach_error_string(m_code))
141 m_string = llvm::sys::StrError(m_code);
146 m_string = RetrieveWin32ErrorString(m_code);
165 m_code
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp21 : m_code(InvalidCode), m_tag(llvm::dwarf::DW_TAG_null), m_has_children(0),
26 : m_code(InvalidCode), m_tag(tag), m_has_children(has_children),
32 m_code = data.GetULEB128(offset_ptr);
33 if (m_code == 0)
72 return m_code != 0 && m_tag != llvm::dwarf::DW_TAG_null;
H A DDWARFAbbreviationDeclaration.h25 dw_uleb128_t Code() const { return m_code; }
26 void SetCode(dw_uleb128_t code) { m_code = code; }
59 dw_uleb128_t m_code; member in class:DWARFAbbreviationDeclaration
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp189 m_code.AppendString("");
191 .SetBaseLineNumber(m_code.GetSize() + 1);
280 m_code.GetSize() + 1);
397 const uint32_t new_default_line = m_code.GetSize() + 1;
399 m_code.SplitIntoLines(code);
409 std::string code(m_code.CopyList());
425 .SetBaseLineNumber(m_code.GetSize() + 1);
470 current_code.append(m_code.CopyList());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStatus.h199 ValueType m_code; ///< Status code as an integer value. member in class:lldb_private::Status
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h149 StringList m_code; // All accumulated REPL statements are saved here member in class:lldb_private::REPL
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-score.c2228 adjust_paritybit (unsigned long m_code, enum insn_class class) argument
2263 m_code_high = m_code & 0x3fff8000;
2264 m_code_low = m_code & 0x00007fff;

Completed in 191 milliseconds