Home
last modified time | relevance | path

Searched refs:m_context (Results 1 – 21 of 21) sorted by relevance

/src/contrib/opencsd/decoder/include/common/
H A Docsd_pe_context.h57 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 …]
/src/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp103 m_context.push_back( in TypeQuery()
107 m_context.push_back({ConvertTypeClass(parsed_name->type_class), in TypeQuery()
110 m_context.push_back({CompilerContextKind::AnyType, ConstString(name)}); in TypeQuery()
119 m_context = decl_ctx.GetCompilerContext(); in TypeQuery()
120 m_context.push_back({CompilerContextKind::AnyType, type_basename}); in TypeQuery()
126 : m_context(context), m_options(options) { in TypeQuery()
135 m_context = decl.GetCompilerContext(); in TypeQuery()
139 if (m_context.empty()) in GetTypeBasename()
141 return m_context.back().name; in GetTypeBasename()
156 if (GetExactMatch() || context_chain.size() == m_context.size()) in ContextMatches()
[all …]
/src/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp55 m_context(v.m_context), m_value_type(v.m_value_type), in Value()
72 m_context = rhs.m_context; in operator =()
105 Value::GetValueTypeAsCString(m_value_type), m_context, in Dump()
142 return static_cast<RegisterInfo *>(m_context); in GetRegisterInfo()
148 return static_cast<Type *>(m_context); in GetType()
620 return static_cast<Variable *>(m_context); in GetVariable()
628 m_context = nullptr; in Clear()
/src/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h31 : 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()
90 llvm::StringRef m_context; // Decl context: "lldb::SBTarget" variable
H A DCPlusPlusLanguage.cpp112 m_context = llvm::StringRef(); in Clear()
233 m_context = full.substr(context_start, context_end - 1 - context_start); in TrySimplifiedParse()
243 m_context = llvm::StringRef(); in TrySimplifiedParse()
262 m_context = function->name.context; in Parse()
284 return m_context; in GetContext()
308 if (m_context.empty()) in GetScopeQualifiedName()
312 res += m_context; in GetScopeQualifiedName()
366 if (m_context.empty()) in ContainsPath()
369 llvm::StringRef haystack = m_context; in ContainsPath()
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h92 m_context = nullptr; in ClearContext()
98 m_context = p; in SetContext()
153 void *m_context = nullptr; variable
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.cpp35 : 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 DSymbolFileDWARFDwo.cpp37 m_context.GetAsLLVM().getCUIndex(); in SymbolFileDWARFDwo()
41 if (const llvm::DWARFUnitIndex &index = m_context.GetAsLLVM().getCUIndex()) { in GetDWOCompileUnitForHash()
H A DDWARFDebugInfo.h61 DWARFContext &m_context; variable
H A DSymbolFileDWARF.cpp473 m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list), in SymbolFileDWARF()
531 apple_types, apple_objc, m_context.getOrLoadStrData()); in InitializeObject()
544 m_context.getOrLoadStrData(), *this); in InitializeObject()
699 const DWARFDataExtractor &debug_abbrev_data = m_context.getOrLoadAbbrevData(); in DebugAbbrev()
722 m_info = std::make_unique<DWARFDebugInfo>(*this, m_context); in DebugInfo()
744 if (m_context.getOrLoadRangesData().GetByteSize() > 0) in GetDebugRanges()
748 m_ranges->Extract(m_context); in GetDebugRanges()
1101 if (!ParseLLVMLineTablePrologue(m_context, prologue, offset, in ParseSupportFiles()
1142 m_context.getOrLoadLineData().GetAsLLVMDWARF(); in GetTypeUnitSupportFiles()
1143 llvm::DWARFContext &ctx = m_context.GetAsLLVM(); in GetTypeUnitSupportFiles()
[all …]
H A DSymbolFileDWARF.h290 DWARFContext &GetDWARFContext() { return m_context; } in GetDWARFContext()
515 DWARFContext m_context; variable
/src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h287 return m_context; in LLDB_MARK_AS_BITMASK_ENUM()
294 std::vector<lldb_private::CompilerContext> m_context; in LLDB_MARK_AS_BITMASK_ENUM()
476 SymbolContextScope *GetSymbolContextScope() { return m_context; } in GetSymbolContextScope()
477 const SymbolContextScope *GetSymbolContextScope() const { return m_context; } in GetSymbolContextScope()
479 m_context = context; in SetSymbolContextScope()
544 SymbolContextScope *m_context = nullptr; variable
/src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.cpp104 : m_context(context), m_error(error) {} in MissingDeclContext()
106 DeclContext *m_context; member
111 m_context->getDeclKindName(), m_error); in log()
H A DClangPersistentVariables.h101 lldb::TypeSystemWP m_context; member
H A DClangPersistentVariables.cpp85 return CompilerType(p.m_context, t); in GetCompilerTypeFromPersistentDecl()
/src/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_etmv4_stack_elem.h190 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;
/src/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h177 std::unique_ptr<llvm::MCContext> m_context; variable
H A DEmulateInstructionMIPS64.cpp167 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()
/src/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h214 std::unique_ptr<llvm::MCContext> m_context; variable
H A DEmulateInstructionMIPS.cpp163 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()
/src/contrib/bsnmp/tests/
H A Dcatch.hpp8077 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 …]