Home
last modified time | relevance | path

Searched refs:name_cstr (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp461 const char *name_cstr = name_str.c_str(); in InspectInstruction() local
463 LLDB_LOGF(log, "Found call to %s: %s\n", name_cstr, in InspectInstruction()
469 if (!strcmp(name_cstr, "objc_msgSend")) { in InspectInstruction()
475 if (!strcmp(name_cstr, "objc_msgSend_stret")) { in InspectInstruction()
481 if (!strcmp(name_cstr, "objc_msgSend_fpret")) { in InspectInstruction()
487 if (!strcmp(name_cstr, "objc_msgSendSuper")) { in InspectInstruction()
493 if (!strcmp(name_cstr, "objc_msgSendSuper_stret")) { in InspectInstruction()
H A DIRForTarget.cpp1136 lldb_private::ConstString name_cstr(name.str().c_str()); in HandleObjCClass() local
1138 m_decl_map->GetSymbolAddress(name_cstr, lldb::eSymbolTypeObjCClass); in HandleObjCClass()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp54 const char *name_cstr = name.GetCString(); in GetIndexOfChildWithName() local
55 if (name_cstr) { in GetIndexOfChildWithName()
65 if (!::strcmp(name_cstr, expr_cstr)) in GetIndexOfChildWithName()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp28 const char *name_cstr, FunctionNameType name_type_mask, in BreakpointResolverName() argument
34 m_regex = RegularExpression(name_cstr); in BreakpointResolverName()
40 name_cstr); in BreakpointResolverName()
43 AddNameLookup(ConstString(name_cstr), name_type_mask); in BreakpointResolverName()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp638 const char *name_cstr = name.GetCString(); in LookupInfo() local
643 if (CPlusPlusLanguage::IsCPPMangledName(name_cstr)) in LookupInfo()
647 ObjCLanguage::IsPossibleObjCMethodName(name_cstr)) in LookupInfo()
654 ObjCLanguage::IsPossibleObjCSelector(name_cstr)) in LookupInfo()
660 if (CPlusPlusLanguage::ExtractContextAndIdentifier(name_cstr, context, in LookupInfo()
690 CPlusPlusLanguage::ExtractContextAndIdentifier(name_cstr, context, in LookupInfo()
696 if (!ObjCLanguage::IsPossibleObjCSelector(name_cstr)) { in LookupInfo()
707 !CPlusPlusLanguage::IsCPPMangledName(name_cstr)) { in LookupInfo()
711 CPlusPlusLanguage::ExtractContextAndIdentifier(name_cstr, context, in LookupInfo()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp436 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType() argument
437 LLDB_INSTRUMENT_VA(this, name_cstr); in FindFirstType()
440 if (name_cstr && module_sp) { in FindFirstType()
441 ConstString name(name_cstr); in FindFirstType()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1670 Module *module, const char *name_cstr, in LookupTypeInModule() argument
1672 if (module && name_cstr && name_cstr[0]) { in LookupTypeInModule()
1673 TypeQuery query(name_cstr); in LookupTypeInModule()
1723 const char *name_cstr, bool name_is_regex) { in LookupTypeHere() argument
1724 TypeQuery query(name_cstr); in LookupTypeHere()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2702 const char *name_cstr = name.AsCString(); in LookupRuntimeSymbol() local
2704 if (name_cstr) { in LookupRuntimeSymbol()
2705 llvm::StringRef name_strref(name_cstr); in LookupRuntimeSymbol()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp789 const char *name_cstr = name.AsCString(); in DeleteBreakpointName() local
792 bp_sp->RemoveName(name_cstr); in DeleteBreakpointName()