| /freebsd/contrib/opencsd/decoder/include/common/ |
| H A D | ocsd_pe_context.h | 57 void setSecLevel(const ocsd_sec_level sl) { m_context.security_level = sl; }; in setSecLevel() 58 …void setEL(const ocsd_ex_level el) { m_context.exception_level = el; m_context.el_valid = el > ocs… in setEL() 59 void setCtxtID(const uint32_t id) { m_context.context_id = id; m_context.ctxt_id_valid = 1; }; in setCtxtID() 60 void setVMID(const uint32_t id) { m_context.vmid = id; m_context.vmid_valid = 1; }; in setVMID() 61 void set64bit(const bool is64bit) { m_context.bits64 = is64bit ? 1 : 0; }; in set64bit() 63 const ocsd_sec_level getSecLevel() const { return m_context.security_level; }; in getSecLevel() 64 const ocsd_ex_level getEL() const { return m_context.exception_level; }; in getEL() 65 const bool ELvalid() const { return (m_context.el_valid == 1); }; in ELvalid() 66 …const uint32_t getCtxtID() const { return (m_context.ctxt_id_valid == 1) ? m_context.context_id : … in getCtxtID() 67 const bool ctxtIDvalid() const { return (m_context.ctxt_id_valid == 1); }; in ctxtIDvalid() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 57 m_context(v.m_context), m_value_type(v.m_value_type), in Value() 74 m_context = rhs.m_context; in operator =() 107 Value::GetValueTypeAsCString(m_value_type), m_context, in Dump() 144 return static_cast<RegisterInfo *>(m_context); in GetRegisterInfo() 150 return static_cast<Type *>(m_context); in GetType() 633 return static_cast<Variable *>(m_context); in GetVariable() 641 m_context = nullptr; in Clear()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 77 m_context.push_back( in TypeQuery() 81 m_context.push_back({ConvertTypeClass(parsed_name->type_class), in TypeQuery() 84 m_context.push_back({CompilerContextKind::AnyType, ConstString(name)}); in TypeQuery() 93 m_context = decl_ctx.GetCompilerContext(); in TypeQuery() 94 m_context.push_back({CompilerContextKind::AnyType, type_basename}); in TypeQuery() 100 : m_context(context), m_options(options) { in TypeQuery() 109 m_context = decl.GetCompilerContext(); in TypeQuery() 113 if (m_context.empty()) in GetTypeBasename() 115 return m_context.back().name; in GetTypeBasename() 131 for (auto pat = m_context.rbegin(), pat_end = m_context.rend(); in ContextMatches() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 92 m_context = nullptr; in ClearContext() 98 m_context = p; in SetContext() 181 void *m_context = nullptr; variable
|
| /freebsd/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() 81 ? m_context.getOrLoadDebugTypesData() in ParseUnitsFor() 82 : m_context.getOrLoadDebugInfoData(); in ParseUnitsFor()
|
| H A D | SymbolFileDWARFDwo.cpp | 37 m_context.GetAsLLVM().getCUIndex(); in SymbolFileDWARFDwo() 41 if (const llvm::DWARFUnitIndex &index = m_context.GetAsLLVM().getCUIndex()) { in GetDWOCompileUnitForHash()
|
| H A D | DWARFDebugInfo.h | 61 DWARFContext &m_context; variable
|
| H A D | SymbolFileDWARF.h | 290 DWARFContext &GetDWARFContext() { return m_context; } in GetDWARFContext() 514 DWARFContext m_context; variable
|
| H A D | SymbolFileDWARF.cpp | 473 m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list), in SymbolFileDWARF() 537 apple_types, apple_objc, m_context.getOrLoadStrData()); in InitializeObject() 550 m_context.getOrLoadStrData(), *this); in InitializeObject() 705 const DWARFDataExtractor &debug_abbrev_data = m_context.getOrLoadAbbrevData(); in DebugAbbrev() 728 m_info = std::make_unique<DWARFDebugInfo>(*this, m_context); in DebugInfo() 1092 if (!ParseLLVMLineTablePrologue(m_context, prologue, offset, in ParseSupportFiles() 1133 m_context.getOrLoadLineData().GetAsLLVMDWARF(); in GetTypeUnitSupportFiles() 1134 llvm::DWARFContext &ctx = m_context.GetAsLLVM(); in GetTypeUnitSupportFiles() 1240 ParseLLVMLineTable(m_context, line, offset, dwarf_cu->GetOffset()); in ParseLineTable() 1292 const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData(); in ParseDebugMacros() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 323 return m_context; in LLDB_MARK_AS_BITMASK_ENUM() 330 std::vector<lldb_private::CompilerContext> m_context; in LLDB_MARK_AS_BITMASK_ENUM() 512 SymbolContextScope *GetSymbolContextScope() { return m_context; } in GetSymbolContextScope() 513 const SymbolContextScope *GetSymbolContextScope() const { return m_context; } in GetSymbolContextScope() 515 m_context = context; in SetSymbolContextScope() 580 SymbolContextScope *m_context = nullptr; variable
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Language.h | 223 : m_full(full), m_basename(), m_context(), m_arguments(), in MethodName() 232 m_context = llvm::StringRef(); in Clear() 260 return m_context; in GetContext() 297 llvm::StringRef m_context; // Decl context: "lldb::SBTarget" variable
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | CxxModuleHandler.cpp | 104 : m_context(context), m_error(error) {} in MissingDeclContext() 106 DeclContext *m_context; member 111 m_context->getDeclKindName(), m_error); in log()
|
| H A D | ClangPersistentVariables.h | 101 lldb::TypeSystemWP m_context; member
|
| H A D | ClangPersistentVariables.cpp | 85 return CompilerType(p.m_context, t); in GetCompilerTypeFromPersistentDecl()
|
| /freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/ |
| H A D | trc_etmv4_stack_elem.h | 190 void setContext(const etmv4_context_t &ctxt) { m_context = ctxt; }; in setContext() 191 const etmv4_context_t &getContext() const { return m_context; }; in getContext() 196 etmv4_context_t m_context;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.cpp | 418 m_context = full.substr(context_start, context_end - 1 - context_start); in TrySimplifiedParse() 428 m_context = llvm::StringRef(); in TrySimplifiedParse() 447 m_context = function->name.context; in Parse() 456 if (m_context.empty()) { in Parse() 459 m_scope_qualified = m_context; in Parse() 515 if (m_context.empty()) in ContainsPath() 518 llvm::StringRef haystack = m_context; in ContainsPath()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/ |
| H A D | EmulateInstructionMIPS64.h | 177 std::unique_ptr<llvm::MCContext> m_context; variable
|
| H A D | EmulateInstructionMIPS64.cpp | 167 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS64() 169 assert(m_context.get()); in EmulateInstructionMIPS64() 171 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS64()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/ |
| H A D | EmulateInstructionMIPS.h | 214 std::unique_ptr<llvm::MCContext> m_context; variable
|
| H A D | EmulateInstructionMIPS.cpp | 163 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS() 165 assert(m_context.get()); in EmulateInstructionMIPS() 167 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS() 181 target->createMCDisassembler(*m_alt_subtype_info, *m_context)); in EmulateInstructionMIPS()
|
| /freebsd/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 …]
|