Home
last modified time | relevance | path

Searched refs:GetName (Results 1 – 25 of 240) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp88 m_persistent_variable_sp->GetName().GetCString(), in MakeAllocation()
126 m_persistent_variable_sp->GetName().AsCString(), in MakeAllocation()
145 m_persistent_variable_sp->GetName().GetCString(), in DestroyAllocation()
528 GetName().AsCString()); in Materialize()
626 GetName().AsCString()); in Dematerialize()
661 GetName().AsCString()); in Dematerialize()
757 virtual ConstString GetName() const = 0;
812 ConstString GetName() const override { return m_variable_sp->GetName(); } in GetName() function in EntityVariable
1045 ? m_delegate->GetName() in Dematerialize()
1235 m_symbol.GetName().AsCString()); in Materialize()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTypeNameSpecifier.cpp62 const char *SBTypeNameSpecifier::GetName() { in GetName() function in SBTypeNameSpecifier
68 return ConstString(m_opaque_sp->GetName()).GetCString(); in GetName()
109 description.Printf("SBTypeNameSpecifier(%s,%s)", GetName(), match_type_str); in GetDescription()
139 if (GetName() == nullptr || rhs.GetName() == nullptr) in IsEqualTo()
142 return (strcmp(GetName(), rhs.GetName()) == 0); in IsEqualTo()
H A DSBFunction.cpp54 const char *SBFunction::GetName() const { in GetName() function in SBFunction
58 return m_opaque_ptr->GetName().AsCString(); in GetName()
97 m_opaque_ptr->GetID(), m_opaque_ptr->GetName().AsCString()); in GetDescription()
100 s.Printf(", type = %s", func_type->GetName().AsCString()); in GetDescription()
181 return variable_sp->GetName().GetCString(); in GetArgumentName()
H A DSBTypeCategory.cpp71 const char *SBTypeCategory::GetName() { in GetName() function in SBTypeCategory
76 return ConstString(m_opaque_sp->GetName()).GetCString(); in GetName()
352 (const void *)ConstString(type_name.GetName()).GetCString(); in AddTypeSummary()
444 (const void *)ConstString(type_name.GetName()).GetCString(); in AddTypeSynthetic()
492 description.Printf("Category name: %s\n", GetName()); in GetDescription()
543 return (strcmp(m_opaque_sp->GetName(), "default") == 0); in IsDefaultCategory()
H A DSBTypeEnumMember.cpp56 const char *SBTypeEnumMember::GetName() { in GetName() function in SBTypeEnumMember
60 return m_opaque_sp->GetName().GetCString(); in GetName()
177 strm.Printf(" %s", m_opaque_sp->GetName().GetCString()); in GetDescription()
H A DSBQueue.cpp79 const char *GetName() const { in GetName() function in lldb_private::QueueImpl
83 return ConstString(queue_sp->GetName()).GetCString(); in GetName()
271 const char *SBQueue::GetName() const { in GetName() function in SBQueue
274 return m_opaque_sp->GetName(); in GetName()
H A DSBBreakpointName.cpp59 const char *GetName() const { in GetName() function in lldb::SBBreakpointNameImpl
154 rhs.m_impl_up->GetTarget(), rhs.m_impl_up->GetName()); in SBBreakpointName()
169 rhs.m_impl_up->GetName()); in operator =()
197 const char *SBBreakpointName::GetName() const { in GetName() function in SBBreakpointName
202 return ConstString(m_impl_up->GetName()).GetCString(); in GetName()
428 return ConstString(bp_name->GetOptions().GetThreadSpec()->GetName()) in GetThreadName()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp57 SetName(parent.GetName()); in ValueObjectSynthetic()
173 GetName().AsCString(), m_parent_type_name.AsCString(), in UpdateValue()
184 GetName().AsCString()); in UpdateValue()
206 GetName().AsCString()); in UpdateValue()
217 GetName().AsCString()); in UpdateValue()
225 GetName().AsCString()); in UpdateValue()
244 GetName().AsCString(), idx); in GetChildAtIndex()
263 GetName().AsCString(), idx); in GetChildAtIndex()
272 GetName().AsCString(), idx, static_cast<void *>(synth_guy.get()), in GetChildAtIndex()
294 GetName().AsCString(), idx, can_create ? "yes" : "no", in GetChildAtIndex()
[all …]
H A DValueObjectDynamicValue.cpp37 SetName(parent.GetName()); in ValueObjectDynamicValue()
55 return m_dynamic_type_info.GetName(); in GetTypeName()
72 return m_dynamic_type_info.GetName(); in GetQualifiedTypeName()
83 return m_dynamic_type_info.GetName(); in GetDisplayTypeName()
255 LLDB_LOGF(log, "[%s %p] has a new dynamic type %s", GetName().GetCString(), in UpdateValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp218 void DWARFDIE::GetName(Stream &s) const { in GetName() function in DWARFDIE
396 push_ctx(CompilerContextKind::Module, die.GetName()); in GetDeclContextImpl()
399 push_ctx(CompilerContextKind::Namespace, die.GetName()); in GetDeclContextImpl()
402 push_ctx(CompilerContextKind::Struct, die.GetName()); in GetDeclContextImpl()
405 push_ctx(CompilerContextKind::Union, die.GetName()); in GetDeclContextImpl()
408 push_ctx(CompilerContextKind::Class, die.GetName()); in GetDeclContextImpl()
411 push_ctx(CompilerContextKind::Enum, die.GetName()); in GetDeclContextImpl()
414 push_ctx(CompilerContextKind::Function, die.GetName()); in GetDeclContextImpl()
420 push_ctx(CompilerContextKind::Typedef, die.GetName()); in GetDeclContextImpl()
438 const char *name = GetName(); in GetTypeLookupContext()
H A DUniqueDWARFASTType.cpp43 const char *parent_arg_die_name = parent_arg_die.GetName(); in Find()
49 const char *parent_pos_die_name = parent_pos_die.GetName(); in Find()
H A DDWARFDeclContext.cpp17 static const char *GetName(DWARFDeclContext::Entry entry) { in GetName() function
49 [&](auto entry) { string_stream << GetName(entry); }, "::"); in GetQualifiedName()
H A DDWARFDIE.h35 using DWARFBaseDIE::GetName;
36 void GetName(Stream &s) const;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterContextUnwind.cpp49 return sym_ctx.symbol->GetName(); in GetSymbolOrFunctionName()
51 return sym_ctx.function->GetName(); in GetSymbolOrFunctionName()
1310 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister()
1370 return_address_reg.GetName(), in SavedLocationForRegister()
1395 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB), in SavedLocationForRegister()
1416 return_address_reg.GetName(), in SavedLocationForRegister()
1506 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister()
1553 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister()
1572 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB), in SavedLocationForRegister()
1573 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister()
[all …]
H A DSectionLoadList.cpp72 section.get(), module_sp->GetFileSpec(), section->GetName(), in SetSectionLoadAddress()
112 section->GetName().GetCString(), in SetSectionLoadAddress()
114 ats_pos->second->GetName().GetCString()); in SetSectionLoadAddress()
140 section->GetName().AsCString(), load_addr); in SetSectionLoadAddress()
162 section_sp->GetName().AsCString()); in SetSectionUnloaded()
199 module_name.c_str(), section_sp->GetName().AsCString(), load_addr); in SetSectionUnloaded()
H A DThreadSpec.cpp68 const char *ThreadSpec::GetName() const { in GetName() function in ThreadSpec
95 const char *name = thread.GetName(); in NameMatches()
146 const char *name = GetName(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp46 int result = ConstString::Compare(a.GetName(), b.GetName()); in Compare()
59 ConstString FunctionInfo::GetName() const { return m_name; } in GetName() function in FunctionInfo
91 s->PutCString(m_mangled.GetName().AsCString()); in DumpStopContext()
96 ConstString InlineFunctionInfo::GetName() const { in GetName() function in InlineFunctionInfo
98 return m_mangled.GetName(); in GetName()
378 GetName().GetCString(), m_comp_unit->GetPrimaryFile().GetPath())); in GetBlock()
391 ConstString name = GetName(); in GetDescription()
692 ConstString Function::GetName() const { in GetName() function in Function
693 return m_mangled.GetName(); in GetName()
697 return m_mangled.GetName(Mangled::ePreferDemangledWithoutArguments); in GetNameNoArguments()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h437 ConstString GetName();
456 ConstString GetName() const { return m_name; } in GetName() function
591 ConstString GetName() const;
675 m_name = m_type_impl_sp->GetName(); in TypeMemberImpl()
680 ConstString GetName() const { return m_name; } in GetName() function
724 ConstString GetName() const;
766 ConstString GetName() const;
805 ConstString GetName() const { return m_name; } in GetName() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionVariable.h38 ConstString GetName() { return m_frozen_sp->GetName(); } in GetName() function
165 if (var_sp->GetName() == name) in GetVariable()
178 llvm::StringRef var_name_str = var_sp->GetName().GetStringRef(); in GetVariable()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp45 const char *ProcessInfo::GetName() const { in GetName() function in ProcessInfo
54 s << "Executable: " << GetName() << "\n"; in Dump()
245 s.PutCString(GetName()); in DumpAsTableRow()
261 const char *match_name = m_match_info.GetName(); in NameMatches()
303 NameMatches(proc_info.GetName()); in Matches()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp221 llvm::StringRef vtable_name(symbol->GetName().GetStringRef()); in FindLibCppStdFunctionCallableInfo()
262 (symbol ? symbol->GetName().GetStringRef().contains("__invoke") : false); in FindLibCppStdFunctionCallableInfo()
280 if (symbol && !symbol->GetName().GetStringRef().starts_with("vtable for") && in FindLibCppStdFunctionCallableInfo()
314 auto name = f->GetName().GetStringRef(); in FindLibCppStdFunctionCallableInfo()
367 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h63 virtual std::string GetName() { in GetName() function
86 std::string GetName() override { in GetName() function
155 SetName(parent.GetName()); in ValueObjectRecognizerSynthesizedValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp399 (child0_sp->GetName() == g_cc_ || child0_sp->GetName() == g_cc)) in GetChildAtIndex()
407 (child0_sp->GetName() == g_cc_ || child0_sp->GetName() == g_cc) && in GetChildAtIndex()
408 child1_sp && child1_sp->GetName() == g_nc) in GetChildAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.h40 const char *GetName() override { in GetName() function
44 m_backing_thread_sp->GetName(); in GetName()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DHighlighter.h99 virtual llvm::StringRef GetName() const = 0;
129 llvm::StringRef GetName() const override { return "none"; } in GetName() function

12345678910