Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
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 DREPL.cpp228 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 DStatus.h185 ValueType m_code = 0; ///< Status code as an integer value.
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h170 int m_code; variable
H A DThreadElfCore.cpp55 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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h167 StringList m_code; // All accumulated REPL statements are saved here variable
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp1051 : 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
/freebsd/sys/amd64/amd64/
H A Dpmap.c2179 vm_page_t m_code, m_pml4, m_pdp, m_pd, m_pt, m_pml5; in pmap_bootstrap_la57() local
2193 m_code = pmap_page_alloc_below_4g(true); in pmap_bootstrap_la57()
2194 v_code = (char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m_code)); in pmap_bootstrap_la57()
2212 kernel_pmap->pm_pmltop[pmap_pml4e_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
2215 v_pdp[pmap_pdpe_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
2218 v_pd[pmap_pde_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
2221 v_pt[pmap_pte_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
2222 VM_PAGE_TO_PHYS(m_code) | X86_PG_V | X86_PG_RW | X86_PG_A | in pmap_bootstrap_la57()
2235 v_pml5[pmap_pml5e_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
2238 v_pml4[pmap_pml4e_index(VM_PAGE_TO_PHYS(m_code))] = in pmap_bootstrap_la57()
[all …]