| /freebsd-13.1/contrib/opencsd/decoder/include/common/ |
| H A D | ocsd_pe_context.h | 60 void setVMID(const uint32_t id) { m_context.vmid = id; m_context.vmid_valid = 1; }; in setVMID() 75 ocsd_pe_context m_context; 85 m_context = *context; in OcsdPeContext() 91 m_context.bits64 = 0; in resetCtxt() 92 m_context.context_id = 0; in resetCtxt() 93 m_context.ctxt_id_valid = 0; in resetCtxt() 94 m_context.el_valid = 0; in resetCtxt() 97 m_context.vmid = 0; in resetCtxt() 98 m_context.vmid_valid = 0; in resetCtxt() 103 m_context = ctxt; [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 44 : m_value(scalar), m_compiler_type(), m_context(nullptr), in Value() 49 : m_value(), m_compiler_type(), m_context(nullptr), in Value() 57 m_context(v.m_context), m_value_type(v.m_value_type), in Value() 74 m_context = rhs.m_context; in operator =() 105 Value::GetValueTypeAsCString(m_value_type), m_context, in Dump() 128 return static_cast<RegisterInfo *>(m_context); in GetRegisterInfo() 134 return static_cast<Type *>(m_context); in GetType() 606 return static_cast<Variable *>(m_context); in GetVariable() 614 m_context = nullptr; in Clear()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.h | 31 : m_full(), m_basename(), m_context(), m_arguments(), m_qualifiers() {} in MethodName() 34 : m_full(s), m_basename(), m_context(), m_arguments(), m_qualifiers(), in MethodName() 67 llvm::StringRef m_context; // Decl context: "lldb::SBTarget" variable
|
| H A D | CPlusPlusLanguage.cpp | 88 m_context = llvm::StringRef(); in Clear() 174 m_context = full.substr(context_start, context_end - 1 - context_start); in TrySimplifiedParse() 184 m_context = llvm::StringRef(); in TrySimplifiedParse() 202 m_context = function.getValue().name.context; in Parse() 223 return m_context; in GetContext() 241 if (m_context.empty()) in GetScopeQualifiedName() 245 res += m_context; in GetScopeQualifiedName()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugInfo.cpp | 35 : m_dwarf(dwarf), m_context(context), m_units(), m_cu_aranges_up() {} in DWARFDebugInfo() 43 m_context.getOrLoadArangesData(); in GetCompileUnitAranges() 73 ? m_context.getOrLoadDebugTypesData() in ParseUnitsFor() 74 : m_context.getOrLoadDebugInfoData(); in ParseUnitsFor()
|
| H A D | SymbolFileDWARFDwo.cpp | 35 m_context.GetAsLLVM().getCUIndex(); in SymbolFileDWARFDwo() 39 if (const llvm::DWARFUnitIndex &index = m_context.GetAsLLVM().getCUIndex()) { in GetDWOCompileUnitForHash()
|
| H A D | DWARFDebugInfo.h | 63 lldb_private::DWARFContext &m_context; variable
|
| H A D | SymbolFileDWARF.cpp | 438 m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list), in SymbolFileDWARF() 489 apple_types, apple_objc, m_context.getOrLoadStrData()); in InitializeObject() 503 m_context.getOrLoadStrData(), *this); in InitializeObject() 643 m_info = std::make_unique<DWARFDebugInfo>(*this, m_context); in DebugInfo() 666 if (m_context.getOrLoadRangesData().GetByteSize() > 0) in GetDebugRanges() 670 m_ranges->Extract(m_context); in GetDebugRanges() 906 if (!ParseLLVMLineTablePrologue(m_context, prologue, offset, in ParseSupportFiles() 944 llvm::DWARFDataExtractor data = m_context.getOrLoadLineData().GetAsLLVM(); in GetTypeUnitSupportFiles() 945 llvm::DWARFContext &ctx = m_context.GetAsLLVM(); in GetTypeUnitSupportFiles() 1041 ParseLLVMLineTable(m_context, line, offset, dwarf_cu->GetOffset()); in ParseLineTable() [all …]
|
| H A D | SymbolFileDWARF.h | 295 lldb_private::DWARFContext &GetDWARFContext() { return m_context; } in GetDWARFContext() 492 lldb_private::DWARFContext m_context; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 92 m_context = nullptr; in ClearContext() 98 m_context = p; in SetContext() 151 void *m_context = nullptr; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | CxxModuleHandler.cpp | 102 : m_context(context), m_error(error) {} in MissingDeclContext() 104 DeclContext *m_context; member 109 m_context->getDeclKindName(), m_error); in log()
|
| H A D | ClangPersistentVariables.h | 100 TypeSystemClang *m_context = nullptr; member
|
| H A D | ClangPersistentVariables.cpp | 82 return CompilerType(p.m_context, t); in GetCompilerTypeFromPersistentDecl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 175 SymbolContextScope *GetSymbolContextScope() { return m_context; } in GetSymbolContextScope() 176 const SymbolContextScope *GetSymbolContextScope() const { return m_context; } in GetSymbolContextScope() 178 m_context = context; in SetSymbolContextScope() 218 SymbolContextScope *m_context = nullptr; variable
|
| /freebsd-13.1/contrib/opencsd/decoder/include/opencsd/etmv4/ |
| H A D | trc_etmv4_stack_elem.h | 173 void setContext(const etmv4_context_t &ctxt) { m_context = ctxt; }; in setContext() 174 const etmv4_context_t &getContext() const { return m_context; }; in getContext() 179 etmv4_context_t m_context;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/ |
| H A D | EmulateInstructionMIPS64.h | 178 std::unique_ptr<llvm::MCContext> m_context; variable
|
| H A D | EmulateInstructionMIPS64.cpp | 166 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS64() 168 assert(m_context.get()); in EmulateInstructionMIPS64() 170 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS64()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 148 m_symbol_file(symbol_file), m_context(context), m_encoding_type(nullptr), in Type() 245 if (show_context && m_context != nullptr) { in Dump() 247 m_context->DumpSymbolContext(s); in Dump()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/ |
| H A D | EmulateInstructionMIPS.h | 215 std::unique_ptr<llvm::MCContext> m_context; variable
|
| H A D | EmulateInstructionMIPS.cpp | 162 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS() 164 assert(m_context.get()); in EmulateInstructionMIPS() 166 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS() 180 target->createMCDisassembler(*m_alt_subtype_info, *m_context)); in EmulateInstructionMIPS()
|
| /freebsd-13.1/contrib/bsnmp/tests/ |
| H A D | catch.hpp | 8077 IMutableContext& m_context; member in Catch::RunContext 12483 m_context(getCurrentMutableContext()), in RunContext() 12489 m_context.setRunner(this); 12490 m_context.setConfig(m_config); 12491 m_context.setResultCapture(this); 13097 , m_context{config, makeReporter(config)} 13116 m_context.testGroupStarting(m_config->name(), 1, 1); in execute() 13118 if (!m_context.aborting()) in execute() 13119 totals += m_context.runTest(*testCase); in execute() 13121 m_context.reporter().skipTest(*testCase); in execute() [all …]
|