| /NextBSD/contrib/llvm/tools/lldb/source/Commands/ |
| HD | CommandObjectFrame.cpp | 401 const char *name_cstr = NULL; in DoExecute() local 423 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx) in DoExecute() 428 RegularExpression regex (name_cstr); in DoExecute() 429 if (regex.Compile(name_cstr)) in DoExecute() 464 ….GetErrorStream().Printf ("error: no variables matched the regular expression '%s'.\n", name_cstr); in DoExecute() 473 … result.GetErrorStream().Printf ("error: unknown regex error when compiling '%s'\n", name_cstr); in DoExecute() 482 valobj_sp = frame->GetValueForVariableExpressionPath (name_cstr, in DoExecute() 500 … options.SetRootValueObjectName(valobj_sp->GetParent() ? name_cstr : NULL); in DoExecute() 509 …eam().Printf ("error: unable to find any variable expression path that matches '%s'\n", name_cstr); in DoExecute() 584 options.SetRootValueObjectName(name_cstr); in DoExecute()
|
| HD | CommandObjectTarget.cpp | 1842 const char *name_cstr, in LookupTypeInModule() argument 1845 if (module && name_cstr && name_cstr[0]) in LookupTypeInModule() 1853 ConstString name(name_cstr); in LookupTypeInModule() 1895 const char *name_cstr, in LookupTypeHere() argument 1906 ConstString name(name_cstr); in LookupTypeHere()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Expression/ |
| HD | ClangPersistentVariables.cpp | 67 char name_cstr[256]; in GetNextPersistentVariableName() local 68 ::snprintf (name_cstr, sizeof(name_cstr), "$%u", m_next_persistent_variable_id++); in GetNextPersistentVariableName() 69 ConstString name(name_cstr); in GetNextPersistentVariableName()
|
| HD | IRDynamicChecks.cpp | 544 const char* name_cstr = name_str.c_str(); in InspectInstruction() local 547 log->Printf("Found call to %s: %s\n", name_cstr, PrintValue(call_inst).c_str()); in InspectInstruction() 552 if (!strcmp(name_cstr, "objc_msgSend")) in InspectInstruction() 559 if (!strcmp(name_cstr, "objc_msgSend_stret")) in InspectInstruction() 566 if (!strcmp(name_cstr, "objc_msgSend_fpret")) in InspectInstruction() 573 if (!strcmp(name_cstr, "objc_msgSendSuper")) in InspectInstruction() 580 if (!strcmp(name_cstr, "objc_msgSendSuper_stret")) in InspectInstruction()
|
| HD | IRForTarget.cpp | 1650 lldb_private::ConstString name_cstr(name.str().c_str()); in HandleObjCClass() local 1651 lldb::addr_t class_ptr = m_decl_map->GetSymbolAddress(name_cstr, lldb::eSymbolTypeObjCClass); in HandleObjCClass() 1654 …log->Printf("Found reference to Objective-C class %s (0x%llx)", name_cstr.AsCString(), (unsigned l… in HandleObjCClass()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | Type.cpp | 752 Type::GetTypeScopeAndBasename (const char* &name_cstr, in GetTypeScopeAndBasename() argument 761 if (name_cstr && name_cstr[0]) in GetTypeScopeAndBasename() 763 llvm::StringRef name_strref(name_cstr); in GetTypeScopeAndBasename() 766 name_cstr += 7; in GetTypeScopeAndBasename() 771 name_cstr += 6; in GetTypeScopeAndBasename() 776 name_cstr += 6; in GetTypeScopeAndBasename() 781 name_cstr += 5; in GetTypeScopeAndBasename() 786 name_cstr += 8; in GetTypeScopeAndBasename() 789 const char *basename_cstr = name_cstr; in GetTypeScopeAndBasename() 801 if (basename_cstr > name_cstr) in GetTypeScopeAndBasename() [all …]
|
| HD | Symtab.cpp | 1101 const char *name_cstr = name.GetCString(); in FindFunctionSymbols() local 1146 for (match = m_basename_to_index.FindFirstValueForName(name_cstr); in FindFunctionSymbols() 1163 for (match = m_method_to_index.FindFirstValueForName(name_cstr); in FindFunctionSymbols() 1180 for (match = m_selector_to_index.FindFirstValueForName(name_cstr); in FindFunctionSymbols()
|
| /NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/ |
| HD | TypeSynthetic.cpp | 68 const char* name_cstr = name.GetCString(); in GetIndexOfChildWithName() local 69 if (name_cstr) in GetIndexOfChildWithName() 83 if (!::strcmp(name_cstr, expr_cstr)) in GetIndexOfChildWithName()
|
| HD | ValueObjectPrinter.cpp | 299 const char *name_cstr = GetRootNameForDisplay(""); in PrintNameIfNeeded() local 300 m_stream->Printf ("%s =", name_cstr); in PrintNameIfNeeded()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Breakpoint/ |
| HD | BreakpointResolverName.cpp | 31 const char *name_cstr, in BreakpointResolverName() argument 44 if (!m_regex.Compile (name_cstr)) in BreakpointResolverName() 49 log->Warning ("function name regexp: \"%s\" did not compile.", name_cstr); in BreakpointResolverName() 54 AddNameLookup (ConstString(name_cstr), name_type_mask); in BreakpointResolverName()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | Module.cpp | 1746 const char *name_cstr = name.GetCString(); in PrepareForFunctionNameLookup() local 1755 if (CPPLanguageRuntime::IsCPPMangledName (name_cstr)) in PrepareForFunctionNameLookup() 1757 else if (ObjCLanguageRuntime::IsPossibleObjCMethodName (name_cstr)) in PrepareForFunctionNameLookup() 1761 if (ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr)) in PrepareForFunctionNameLookup() 1768 if (CPPLanguageRuntime::ExtractContextAndIdentifier (name_cstr, context, basename)) in PrepareForFunctionNameLookup() 1804 CPPLanguageRuntime::ExtractContextAndIdentifier (name_cstr, context, basename); in PrepareForFunctionNameLookup() 1810 if (!ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr)) in PrepareForFunctionNameLookup()
|
| /NextBSD/contrib/llvm/tools/lldb/source/API/ |
| HD | SBModule.cpp | 511 SBModule::FindFirstType (const char *name_cstr) in FindFirstType() argument 515 if (name_cstr && module_sp) in FindFirstType() 519 ConstString name(name_cstr); in FindFirstType()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| HD | SymbolFileDWARF.cpp | 3416 const char *name_cstr = name.GetCString(); in FindGlobalVariables() local 3420 if (!CPPLanguageRuntime::ExtractContextAndIdentifier(name_cstr, context, basename)) in FindGlobalVariables() 3421 basename = name_cstr; in FindGlobalVariables() 3867 const char *name_cstr = name.GetCString(); in FindFunctions() local 3891 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets); in FindFunctions() 3910 … die_offset, name_cstr); in FindFunctions() 3920 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets); in FindFunctions() 3943 die_offset, name_cstr); in FindFunctions() 3956 num_matches = m_apple_names_ap->FindByName (name_cstr, die_offsets); in FindFunctions() 4022 … die_offset, name_cstr); in FindFunctions() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| HD | Type.h | 265 GetTypeScopeAndBasename (const char* &name_cstr,
|
| /NextBSD/contrib/llvm/tools/lldb/source/Interpreter/ |
| HD | CommandInterpreter.cpp | 891 const char* name_cstr = name.c_str(); in AddUserCommand() local 894 if (CommandExists(name_cstr)) in AddUserCommand() 902 if (UserCommandExists(name_cstr)) in AddUserCommand()
|