/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | DynamicLoader.cpp | 204 prog_str << uuid.GetAsString(); in LoadBinaryWithUUIDAndAddress() 217 prog_str << uuid.GetAsString(); in LoadBinaryWithUUIDAndAddress() 292 name.str().c_str(), uuid.GetAsString().c_str(), in LoadBinaryWithUUIDAndAddress() 301 name.str().c_str(), uuid.GetAsString().c_str()); in LoadBinaryWithUUIDAndAddress() 310 name.str().c_str(), uuid.GetAsString().c_str(), value); in LoadBinaryWithUUIDAndAddress() 328 s.Printf(" with UUID %s", uuid.GetAsString().c_str()); in LoadBinaryWithUUIDAndAddress() 340 name.str().c_str(), uuid.GetAsString().c_str(), in LoadBinaryWithUUIDAndAddress()
|
H A D | ModuleList.cpp | 663 module->GetUUID().GetAsString().c_str(), in LogUUIDAndPaths() 937 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 1017 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
H A D | SymbolLocatorDebugSymbols.cpp | 150 path, uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 172 path, uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 180 CFCString uuid_cfstr(uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 198 uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 218 uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 231 path, uuid->GetAsString().c_str()); in LocateExecutableObjectFile() 592 path, uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 614 path, uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 622 CFCString uuid_cfstr(uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 640 uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ModuleCache.cpp | 75 return JoinPath(modules_dir_spec, uuid.GetAsString().c_str()); in GetModuleDirectory() 99 module_uuid.GetAsString().c_str(), error.AsCString()); in DeleteExistingModule() 160 m_file_spec = JoinPath(lock_dir_spec, uuid.GetAsString().c_str()); in ModuleLock() 219 m_loaded_modules.find(module_spec.GetUUID().GetAsString()); in Get() 264 std::make_pair(module_spec.GetUUID().GetAsString(), cached_module_sp)); in Get() 285 module_spec.GetUUID().GetAsString().c_str(), in GetAndPut()
|
H A D | Statistics.cpp | 329 module_stat.uuid = module->GetUUID().GetAsString(); in ReportStatistics()
|
H A D | Thread.cpp | 1834 name->GetAsString()->GetValue(), in GetDescription() 1850 breadcrumb_text->GetAsString()->GetValue()); in GetDescription() 1870 strm.Format(" {0}\n", message_text->GetAsString()->GetValue()); in GetDescription()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LocateSymbolFileMacOSX.cpp |
|
H A D | LocateSymbolFile.cpp |
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | UUID.cpp | 49 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString() function in UUID 64 void UUID::Dump(Stream &s) const { s.PutCString(GetAsString()); } in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValue.cpp | 237 OptionValueString *OptionValue::GetAsString() { in GetAsUInt64() 243 const OptionValueString *OptionValue::GetAsString() const { in GetAsUUID() 417 if (const OptionValueString *option_value = GetAsString()) in SetUUIDValue() 424 if (OptionValueString *option_value = GetAsString()) { in GetArchSpecValue() 218 OptionValueString *OptionValue::GetAsString() { GetAsString() function in OptionValue 224 const OptionValueString *OptionValue::GetAsString() const { GetAsString() function in OptionValue
|
H A D | OptionValueUUID.cpp | 79 request.TryCompleteCurrentArg(module_uuid.GetAsString()); in AutoComplete()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | StructuredData.h | 152 String *GetAsString() { in GetAsString() 159 String *s = GetAsString(); 239 if (auto *string_value = item_sp->GetAsString()) in GetItemAtIndexAsInteger() 468 if (auto string_value = value_sp->GetAsString()) { in GetValueForKey() 151 String *GetAsString() { GetAsString() function
|
H A D | UUID.h | 71 std::string GetAsString(llvm::StringRef separator = "-") const;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValueUUID.h | 33 return m_uuid.GetAsString(); in ToJSON()
|
H A D | OptionValue.h | 239 OptionValueString *GetAsString(); 240 const OptionValueString *GetAsString() const;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
H A D | InstrumentationRuntimeTSan.cpp | 497 ->GetAsString() in FormatDescription() 622 ->GetAsString() in GenerateSummary() 667 ->GetAsString() in GenerateSummary() 763 ->GetAsString() in GetLocationDescription()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.cpp | 232 uuid_str += memory_module_sp->GetUUID().GetAsString(); in CheckForKernelImageAtAddress() 331 s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule() 374 m_name.c_str(), m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
H A D | ScriptedThreadPythonInterface.cpp | 132 return obj->GetAsString()->GetValue().str(); in GetRegisterContext()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptedThreadPythonInterface.cpp |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/ |
H A D | ReportRetriever.cpp | 148 ->GetAsString() in FormatDescription()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
H A D | SymbolLocatorDefault.cpp | 175 uuid_str = module_uuid.GetAsString(""); in LocateExecutableSymbolFile()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
H A D | InstrumentationRuntimeASan.cpp |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
H A D | InstrumentationRuntimeMainThreadChecker.cpp | 176 ->GetAsString() in NotifyBreakpointHit()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.cpp | 201 << R.ID.GetAsString(); in operator <<() 226 return OS << "INFO CODE_ID " << R.ID.GetAsString(); in operator <<()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTBundleSaver.cpp | 286 JSONUINT64{load_addr}, module_sp->GetUUID().GetAsString()}); in BuildModulesSection()
|