Home
last modified time | relevance | path

Searched refs:GetCString (Results 1 – 25 of 167) sorted by relevance

1234567

/openbsd-src/gnu/llvm/lldb/source/Expression/
H A DExpressionVariable.cpp36 SymbolMap::iterator si = m_symbol_map.find(name.GetCString()); in LookupSymbol()
57 m_symbol_map[jitted_function.m_name.GetCString()] = in RegisterExecutionUnit()
60 jitted_function.m_name.GetCString(), in RegisterExecutionUnit()
75 m_symbol_map[global_var.m_name.GetCString()] = global_var.m_remote_addr; in RegisterExecutionUnit()
77 global_var.m_name.GetCString(), global_var.m_remote_addr); in RegisterExecutionUnit()
H A DMaterializer.cpp88 m_persistent_variable_sp->GetName().GetCString(), in MakeAllocation()
94 m_persistent_variable_sp->GetName().GetCString(), mem); in MakeAllocation()
145 m_persistent_variable_sp->GetName().GetCString(), in DestroyAllocation()
240 m_persistent_variable_sp->GetName().GetCString(), in Dematerialize()
275 m_persistent_variable_sp->GetName().GetCString()); in Dematerialize()
283 m_persistent_variable_sp->GetName().GetCString()); in Dematerialize()
292 m_persistent_variable_sp->GetName().GetCString(), in Dematerialize()
310 m_persistent_variable_sp->GetName().GetCString(), in Dematerialize()
449 (uint64_t)load_addr, GetName().GetCString()); in Materialize()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp76 PersistentDecl p = m_persistent_decls.lookup(type_name.GetCString()); in GetCompilerTypeFromPersistentDecl()
93 m_persistent_decls.insert(std::make_pair(name.GetCString(), p)); in RegisterPersistentDecl()
99 ConstString(enumerator_decl->getNameAsString()).GetCString(), p)); in RegisterPersistentDecl()
106 return m_persistent_decls.lookup(name.GetCString()).m_decl; in GetPersistentDecl()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBError.i67 GetCString () const;
115 …description = property(GetCString, None, doc='''A read only property that returns the same result …
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp114 const char *full = m_full.GetCString(); in GetClassName()
140 const char *full = m_full.GetCString(); in GetClassNameWithCategory()
148 if (!m_class && strchr(m_class_category.GetCString(), '(') == nullptr) { in GetClassNameWithCategory()
163 const char *full = m_full.GetCString(); in GetSelector()
179 const char *full = m_full.GetCString(); in GetCategory()
203 strm.Printf("[%s %s]", GetClassName().GetCString(), in GetFullNameWithoutCategory()
204 GetSelector().GetCString()); in GetFullNameWithoutCategory()
219 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants()
241 strm.Printf("+%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
246 strm.Printf("-%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandCompletions.cpp134 m_file_name = partial_spec.GetFilename().GetCString(); in SourceFileCompleter()
135 m_dir_name = partial_spec.GetDirectory().GetCString(); in SourceFileCompleter()
145 context.comp_unit->GetPrimaryFile().GetFilename().GetCString(); in SearchCallback()
147 context.comp_unit->GetPrimaryFile().GetDirectory().GetCString(); in SearchCallback()
170 m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString()); in DoCompletion()
244 m_request.AddCompletion((*pos).GetCString()); in DoCompletion()
263 m_file_name = partial_spec.GetFilename().GetCString(); in ModuleCompleter()
264 m_dir_name = partial_spec.GetDirectory().GetCString(); in ModuleCompleter()
274 context.module_sp->GetFileSpec().GetFilename().GetCString(); in SearchCallback()
276 context.module_sp->GetFileSpec().GetDirectory().GetCString(); in SearchCallback()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp84 original_ptr, in_value.GetTypeName().GetCString(), name); in GetTypeInfoFromVTableAddress()
128 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfoFromVTableAddress()
144 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfoFromVTableAddress()
160 type_sp->GetID(), type_sp->GetName().GetCString()); in GetTypeInfoFromVTableAddress()
290 std::string corrected_name(type_and_or_name.GetName().GetCString()); in FixUpDynamicType()
363 demangled.GetCString()); in DoExecute()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DSectionLoadList.cpp111 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 DPathMappingList.cpp139 m_pairs[index].first.GetCString(), in Dump()
140 m_pairs[index].second.GetCString()); in Dump()
143 s->Printf("%s -> %s", m_pairs[pair_index].first.GetCString(), in Dump()
144 m_pairs[pair_index].second.GetCString()); in Dump()
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DTypeCategory.cpp197 *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()
H A DTypeSynthetic.cpp54 const char *name_cstr = name.GetCString(); in GetIndexOfChildWithName()
191 name.GetCString()); in GetIndexOfChildWithName()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h79 m_collection[name.GetCString()].Append(entry); in Insert()
85 const char *unique_name_cstr = name.GetCString(); in Find()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBType.cpp526 return m_opaque_sp->GetName().GetCString(); in GetName()
534 return m_opaque_sp->GetDisplayTypeName().GetCString(); in GetDisplayTypeName()
684 return m_opaque_up->GetName().GetCString(); in GetName()
740 const char *name = m_opaque_up->GetName().GetCString(); in GetDescription()
805 return m_opaque_sp->GetName().GetCString(); in GetName()
816 return mangled.GetDemangledName().GetCString(); in GetDemangledName()
826 return m_opaque_sp->GetMangledName().GetCString(); in GetMangledName()
H A DSBError.cpp43 const char *SBError::GetCString() const { in GetCString() function in SBError
178 const char *err_string = GetCString(); in GetDescription()
H A DSBTypeEnumMember.cpp60 return m_opaque_sp->GetName().GetCString(); in GetName()
177 strm.Printf(" %s", m_opaque_sp->GetName().GetCString()); in GetDescription()
H A DSBModuleSpec.cpp98 return m_opaque_up->GetObjectName().GetCString(); in GetObjectName()
115 return const_triple.GetCString(); in GetTriple()
H A DSBPlatform.cpp150 return m_opaque_ptr->m_local_cache_directory.GetCString(); in GetLocalCacheDirectory()
416 return ConstString(arch.GetTriple().getTriple().c_str()).GetCString(); in GetTriple()
431 return ConstString(s).GetCString(); in GetOSBuild()
446 return ConstString(s.c_str()).GetCString(); in GetOSDescription()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DUniqueCStringMap.h140 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()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp63 m_enumerations.GetCStringAtIndex(0).GetCString()); in SetValueFromString()
66 m_enumerations.GetCStringAtIndex(i).GetCString()); in SetValueFromString()
H A DOptionValueDictionary.cpp90 dict.try_emplace(value.first.GetCString(), value.second->ToJSON(exe_ctx)); in ToJSON()
100 strm.Printf("%s=", pos->first.GetCString()); in GetArgs()
205 key.GetCString()); in SetArgs()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp65 const char *mangled_name = mangled.GetMangledName().GetCString(); in SymbolNameFitsToLanguage()
71 const char *mangled_name_cstr = mangled.GetMangledName().GetCString(); in GetDemangledFunctionNameWithoutArguments()
216 llvm::StringRef full(m_full.GetCString()); in TrySimplifiedParse()
544 if (!strncmp(mangled_name.GetCString(), "_ZN", 3) && in GenerateAlternateFunctionManglings()
545 strncmp(mangled_name.GetCString(), "_ZNK", 4)) { in GenerateAlternateFunctionManglings()
547 fixed_scratch.append(mangled_name.GetCString() + 3); in GenerateAlternateFunctionManglings()
552 if (!strncmp(mangled_name.GetCString(), "_Z", 2) && in GenerateAlternateFunctionManglings()
553 strncmp(mangled_name.GetCString(), "_ZL", 3)) { in GenerateAlternateFunctionManglings()
555 fixed_scratch.append(mangled_name.GetCString() + 2); in GenerateAlternateFunctionManglings()
1544 cstr = inline_info->GetName().GetCString(); in GetFunctionDisplayName()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DBreakpointBase.cpp235 NotifyLogMessageError(error.GetCString()); in SetLogMessage()
248 NotifyLogMessageError(error.GetCString()); in SetLogMessage()
262 NotifyLogMessageError(error.GetCString()); in SetLogMessage()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DUnwindPlan.cpp446 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()
H A DLocateSymbolFile.cpp343 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
345 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
351 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp71 module_name.SetCString(module_name.GetCString()); in SerializeToStructuredData()
74 module_name.GetCString()); in SerializeToStructuredData()

1234567