Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp378 const char *name_cstr = name_str.c_str(); in InspectInstruction() local
380 LLDB_LOGF(log, "Found call to %s: %s\n", name_cstr, in InspectInstruction()
386 if (!strcmp(name_cstr, "objc_msgSend")) { in InspectInstruction()
392 if (!strcmp(name_cstr, "objc_msgSend_stret")) { in InspectInstruction()
398 if (!strcmp(name_cstr, "objc_msgSend_fpret")) { in InspectInstruction()
404 if (!strcmp(name_cstr, "objc_msgSendSuper")) { in InspectInstruction()
410 if (!strcmp(name_cstr, "objc_msgSendSuper_stret")) { in InspectInstruction()
H A DIRForTarget.cpp1137 lldb_private::ConstString name_cstr(name.str().c_str()); in HandleObjCClass() local
1139 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/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.cpp1678 Module *module, const char *name_cstr, in LookupTypeInModule() argument
1680 if (module && name_cstr && name_cstr[0]) { in LookupTypeInModule()
1681 TypeQuery query(name_cstr); in LookupTypeInModule()
1731 const char *name_cstr, bool name_is_regex) { in LookupTypeHere() argument
1732 TypeQuery query(name_cstr); in LookupTypeHere()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2721 const char *name_cstr = name.AsCString(); in LookupRuntimeSymbol() local
2723 if (name_cstr) { in LookupRuntimeSymbol()
2724 llvm::StringRef name_strref(name_cstr); in LookupRuntimeSymbol()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp876 const char *name_cstr = name.AsCString(); in DeleteBreakpointName() local
879 bp_sp->RemoveName(name_cstr); in DeleteBreakpointName()