/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | ExpressionVariable.cpp | 42 SymbolMap::iterator si = m_symbol_map.find(name.GetCString()); in LookupSymbol() 63 m_symbol_map[jitted_function.m_name.GetCString()] = in RegisterExecutionUnit() 66 jitted_function.m_name.GetCString(), in RegisterExecutionUnit() 81 m_symbol_map[global_var.m_name.GetCString()] = global_var.m_remote_addr; in RegisterExecutionUnit() 83 global_var.m_name.GetCString(), global_var.m_remote_addr); in RegisterExecutionUnit()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangPersistentVariables.cpp | 77 PersistentDecl p = m_persistent_decls.lookup(type_name.GetCString()); in GetCompilerTypeFromPersistentDecl() 94 m_persistent_decls.insert(std::make_pair(name.GetCString(), p)); in RegisterPersistentDecl() 100 ConstString(enumerator_decl->getNameAsString()).GetCString(), p)); in RegisterPersistentDecl() 107 return m_persistent_decls.lookup(name.GetCString()).m_decl; in GetPersistentDecl()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBPlatform.cpp | 107 return ConstString(m_opaque_ptr->m_url.c_str()).GetCString(); in SetURL() 154 return m_opaque_ptr->m_local_cache_directory.GetCString(); in SetLocalCacheDirectory() 210 return ConstString(m_opaque_ptr->m_shell.c_str()).GetCString(); in SetShell() 227 return ConstString(m_opaque_ptr->m_command.c_str()).GetCString(); in SetCommand() 244 return ConstString(m_opaque_ptr->m_working_dir.c_str()).GetCString(); in SetWorkingDirectory() 290 return ConstString(m_opaque_ptr->m_output.c_str()).GetCString(); 420 return ConstString(arch.GetTriple().getTriple().c_str()).GetCString(); in GetTriple() 435 return ConstString(s).GetCString(); in GetOSBuild() 450 return ConstString(s.c_str()).GetCString(); in GetOSDescription() 461 return ConstString(platform_sp->GetHostname()).GetCString(); [all...] |
H A D | SBType.cpp | 383 return m_opaque_up->GetName().GetCString(); in GetName() 391 return m_opaque_up->GetMangledName().GetCString(); in GetMangledName() 627 return m_opaque_sp->GetName().GetCString(); in GetName() 635 return m_opaque_sp->GetDisplayTypeName().GetCString(); in GetDisplayTypeName() 793 return m_opaque_up->GetName().GetCString(); in GetName() 849 const char *name = m_opaque_up->GetName().GetCString(); in GetDescription() 914 return m_opaque_sp->GetName().GetCString(); in GetName() 929 return mangled.GetDemangledName().GetCString(); in GetDemangledName() 936 return m_opaque_sp->GetMangledName().GetCString(); in GetMangledName()
|
H A D | SBTraceCursor.cpp | 88 return ConstString(m_opaque_sp->GetError()).GetCString(); in GetError() 106 return ConstString(m_opaque_sp->GetEventTypeAsString()).GetCString(); in GetEventTypeAsString()
|
H A D | SBLaunchInfo.cpp | 152 .GetCString(); in GetArgumentAtIndex() 180 return ConstString(m_opaque_sp->GetEnvp()[idx]).GetCString(); in GetEnvironmentEntryAtIndex() 237 return ConstString(m_opaque_sp->GetProcessPluginName()).GetCString(); in GetProcessPluginName() 319 return ConstString(m_opaque_sp->GetLaunchEventData()).GetCString(); in GetLaunchEventData()
|
H A D | SBStringList.cpp | 116 return ConstString(m_opaque_up->GetStringAtIndex(idx)).GetCString(); in GetStringAtIndex() 125 return ConstString(m_opaque_up->GetStringAtIndex(idx)).GetCString(); in GetStringAtIndex()
|
H A D | SBError.cpp | 49 const char *SBError::GetCString() const { in GetCString() function in SBError 184 const char *err_string = GetCString(); in GetDescription()
|
H A D | SBProcessInfo.cpp | 63 return ConstString(m_opaque_up->GetName()).GetCString(); in GetName() 186 return ConstString(arch.GetTriple().getTriple().c_str()).GetCString(); in GetTriple()
|
H A D | SBBreakpointName.cpp | 202 return ConstString(m_impl_up->GetName()).GetCString(); in GetName() 320 return ConstString(bp_name->GetOptions().GetConditionText()).GetCString(); in GetCondition() 429 .GetCString(); in GetThreadName() 457 .GetCString(); in GetQueueName() 501 return ConstString(bp_name->GetHelp()).GetCString(); in GetHelpString()
|
H A D | SBTypeEnumMember.cpp | 60 return m_opaque_sp->GetName().GetCString(); in GetName() 177 strm.Printf(" %s", m_opaque_sp->GetName().GetCString()); in GetDescription()
|
H A D | SBTypeSynthetic.cpp | 81 return ConstString(m_opaque_sp->GetPythonCode()).GetCString(); in GetData() 83 return ConstString(m_opaque_sp->GetPythonClassName()).GetCString(); in GetData()
|
H A D | SBEvent.cpp | 66 return ConstString(lldb_event->GetData()->GetFlavor()).GetCString(); in GetDataFlavor() 172 .GetCString(); in GetCStringFromEvent()
|
H A D | SBInstruction.cpp | 126 return ConstString(inst_sp->GetMnemonic(&exe_ctx)).GetCString(); in GetMnemonic() 145 return ConstString(inst_sp->GetOperands(&exe_ctx)).GetCString(); in GetOperands() 164 return ConstString(inst_sp->GetComment(&exe_ctx)).GetCString(); in GetComment()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | SectionLoadList.cpp | 111 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress() 112 section->GetName().GetCString(), in SetSectionLoadAddress() 113 curr_module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress() 114 ats_pos->second->GetName().GetCString()); in SetSectionLoadAddress()
|
H A D | PathMappingList.cpp | 147 m_pairs[index].first.GetCString(), in Dump() 148 m_pairs[index].second.GetCString()); in Dump() 151 s->Printf("%s -> %s", m_pairs[pair_index].first.GetCString(), in Dump() 152 m_pairs[pair_index].second.GetCString()); in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | TypeCategory.cpp | 197 *matching_category = m_name.GetCString(); in AnyMatches() 207 *matching_category = m_name.GetCString(); in AnyMatches() 217 *matching_category = m_name.GetCString(); in AnyMatches() 227 *matching_category = m_name.GetCString(); in AnyMatches()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | UniqueDWARFASTType.h | 85 m_collection[name.GetCString()].Append(entry); in Insert() 91 const char *unique_name_cstr = name.GetCString(); in Find()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
H A D | SymbolLocatorDefault.cpp | 196 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile() 198 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile() 204 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | UniqueCStringMap.h | 140 if (regex.Execute(pos->cstring.GetCString())) in GetValues() 230 auto lhsint = uintptr_t(lhs.GetCString()); in ThreeWay() 231 auto rhsint = uintptr_t(rhs.GetCString()); in ThreeWay()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
H A D | ItaniumABILanguageRuntime.cpp | 73 in_value.GetTypeName().GetCString(), in GetTypeInfo() 127 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfo() 144 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfo() 161 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfo() 388 std::string corrected_name(type_and_or_name.GetName().GetCString()); in FixUpDynamicType() 449 demangled.GetCString()); in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValueEnumeration.cpp | 63 m_enumerations.GetCStringAtIndex(0).GetCString()); in SetValueFromString() 66 m_enumerations.GetCStringAtIndex(i).GetCString()); in SetValueFromString()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusLanguage.cpp | 66 const char *mangled_name = mangled.GetMangledName().GetCString(); in SymbolNameFitsToLanguage() 72 const char *mangled_name_cstr = mangled.GetMangledName().GetCString(); in GetDemangledFunctionNameWithoutArguments() 217 llvm::StringRef full(m_full.GetCString()); in TrySimplifiedParse() 543 if (!strncmp(mangled_name.GetCString(), "_ZN", 3) && in GenerateAlternateFunctionManglings() 544 strncmp(mangled_name.GetCString(), "_ZNK", 4)) { in GenerateAlternateFunctionManglings() 546 fixed_scratch.append(mangled_name.GetCString() + 3); in GenerateAlternateFunctionManglings() 551 if (!strncmp(mangled_name.GetCString(), "_Z", 2) && in GenerateAlternateFunctionManglings() 552 strncmp(mangled_name.GetCString(), "_ZL", 3)) { in GenerateAlternateFunctionManglings() 554 fixed_scratch.append(mangled_name.GetCString() + 2); in GenerateAlternateFunctionManglings() 1733 cstr = inline_info->GetName().GetCString(); in GetFunctionDisplayName()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | UnwindPlan.cpp | 446 m_source_name.GetCString(), s.GetData()); in PlanValidAtAddress() 450 m_source_name.GetCString()); in PlanValidAtAddress() 469 m_source_name.GetCString(), s.GetData()); in PlanValidAtAddress() 474 m_source_name.GetCString()); in PlanValidAtAddress() 496 m_source_name.GetCString()); in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointResolverAddress.cpp |
|