| /openbsd-src/gnu/llvm/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 | 224 module_stat.uuid = module->GetUUID().GetAsString(); in ReportStatistics()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 245 uuid.GetAsString().c_str(), in LoadBinaryWithUUIDAndAddress() 252 uuid.GetAsString().c_str()); in LoadBinaryWithUUIDAndAddress() 259 uuid.GetAsString().c_str(), value); in LoadBinaryWithUUIDAndAddress() 271 uuid.GetAsString().c_str(), in LoadBinaryWithUUIDAndAddress()
|
| H A D | ModuleList.cpp | 660 module->GetUUID().GetAsString().c_str(), in LogUUIDAndPaths() 934 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 1014 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule()
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | LocateSymbolFileMacOSX.cpp | 116 path, uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 138 path, uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 146 CFCString uuid_cfstr(uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 164 uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 184 uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 197 path, uuid->GetAsString().c_str()); in LocateMacOSXFilesUsingDebugSymbols() 580 const std::string uuid_str = uuid_ptr ? uuid_ptr->GetAsString() : ""; in DownloadObjectAndSymbolFile()
|
| H A D | LocateSymbolFile.cpp | 322 uuid_str = module_uuid.GetAsString(""); in LocateExecutableSymbolFile()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 130 String *GetAsString() { in GetAsString() function 137 String *s = GetAsString(); 225 if (auto string_value = value_sp->GetAsString()) { in GetItemAtIndexAsString() 244 if (auto string_value = value_sp->GetAsString()) { in GetItemAtIndexAsString() 453 if (auto string_value = value_sp->GetAsString()) { in GetValueForKeyAsString() 477 if (auto string_value = value_sp->GetAsString()) { in GetValueForKeyAsString()
|
| H A D | UUID.h | 71 std::string GetAsString(llvm::StringRef separator = "-") const;
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | OptionValue.cpp | 238 OptionValueString *OptionValue::GetAsString() { in GetAsString() function in OptionValue 244 const OptionValueString *OptionValue::GetAsString() const { in GetAsString() function in OptionValue 409 const OptionValueString *option_value = GetAsString(); in GetStringValue() 416 OptionValueString *option_value = GetAsString(); in SetStringValue()
|
| H A D | OptionValueUUID.cpp | 79 request.TryCompleteCurrentArg(module_uuid.GetAsString()); in AutoComplete()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/ |
| H A D | SymbolVendorMacOSX.cpp | 163 std::string uuid_str = dsym_uuid.GetAsString(); in CreateInstance() 229 if (object && object->GetAsString()) { in CreateInstance()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueUUID.h | 33 return m_uuid.GetAsString(); in ToJSON()
|
| H A D | OptionValue.h | 249 OptionValueString *GetAsString(); 251 const OptionValueString *GetAsString() const;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | DynamicLoaderDarwinKernel.cpp | 486 uuid_str += memory_module_sp->GetUUID().GetAsString(); in CheckForKernelImageAtAddress() 677 m_uuid.GetAsString().c_str(), m_load_address, in ReadMemoryModule() 678 memory_module_sp->GetUUID().GetAsString().c_str()); in ReadMemoryModule() 736 s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule() 1326 uuid = ku.second.GetAsString(); in ParseKextSummaries() 1400 LLDB_LOG(log, "uuid={0} name=\"{1}\" (UNLOADED)", m_uuid.GetAsString(), in PutToLog() 1404 m_load_address, m_size, m_uuid.GetAsString(), m_name); in PutToLog()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderDarwin.cpp | 389 image->GetValueForKey("pathname")->GetAsString()->GetValue(), in JSONImageInformationIntoImageInfo() 406 ->GetAsString() in JSONImageInformationIntoImageInfo() 435 ->GetAsString() in JSONImageInformationIntoImageInfo() 468 ConstString(seg->GetValueForKey("name")->GetAsString()->GetValue()); in JSONImageInformationIntoImageInfo() 505 image->GetValueForKey("uuid")->GetAsString()->GetValue()); in JSONImageInformationIntoImageInfo() 815 uuid.GetAsString(), file_spec.GetPath()); in PutToLog() 818 address, mod_date, uuid.GetAsString(), file_spec.GetPath()); in PutToLog()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 495 ->GetAsString() in FormatDescription() 619 ->GetAsString() in GenerateSummary() 664 ->GetAsString() in GenerateSummary() 763 ->GetAsString() in GetLocationDescription()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedThreadPythonInterface.cpp | 145 return obj->GetAsString()->GetValue().str(); in GetRegisterContext()
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/ |
| H A D | JSONUtils.h | 44 llvm::StringRef GetAsString(const llvm::json::Value &value);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 195 ->GetAsString() in FormatDescription()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/mach-core/ |
| H A D | ProcessMachCore.cpp | 244 objfile_binary_uuid.GetAsString().c_str(), in LoadBinariesViaMetadata() 287 ident_uuid.GetAsString().c_str()); in LoadBinariesViaMetadata()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 175 ->GetAsString() in NotifyBreakpointHit()
|
| /openbsd-src/gnu/llvm/lldb/source/Host/windows/ |
| H A D | Host.cpp | 271 auto str_sp = item_sp->GetAsString(); in ShellExpandArguments()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | BreakpadRecords.cpp | 199 << R.ID.GetAsString(); in operator <<() 224 return OS << "INFO CODE_ID " << R.ID.GetAsString(); in operator <<()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPTBundleSaver.cpp | 286 JSONUINT64{load_addr}, module_sp->GetUUID().GetAsString()}); in BuildModulesSection()
|