Home
last modified time | relevance | path

Searched refs:GetAsString (Results 1 – 25 of 45) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/source/Target/
H A DModuleCache.cpp75 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 DStatistics.cpp224 module_stat.uuid = module->GetUUID().GetAsString(); in ReportStatistics()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDynamicLoader.cpp245 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 DModuleList.cpp660 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 DLocateSymbolFileMacOSX.cpp116 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 DLocateSymbolFile.cpp322 uuid_str = module_uuid.GetAsString(""); in LocateExecutableSymbolFile()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DUUID.cpp49 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 DStructuredData.h130 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 DUUID.h71 std::string GetAsString(llvm::StringRef separator = "-") const;
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionValue.cpp238 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 DOptionValueUUID.cpp79 request.TryCompleteCurrentArg(module_uuid.GetAsString()); in AutoComplete()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp163 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 DOptionValueUUID.h33 return m_uuid.GetAsString(); in ToJSON()
H A DOptionValue.h249 OptionValueString *GetAsString();
251 const OptionValueString *GetAsString() const;
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp486 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 DDynamicLoaderDarwin.cpp389 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 DInstrumentationRuntimeTSan.cpp495 ->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 DScriptedThreadPythonInterface.cpp145 return obj->GetAsString()->GetValue().str(); in GetRegisterContext()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.h44 llvm::StringRef GetAsString(const llvm::json::Value &value);
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp195 ->GetAsString() in FormatDescription()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp244 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 DInstrumentationRuntimeMainThreadChecker.cpp175 ->GetAsString() in NotifyBreakpointHit()
/openbsd-src/gnu/llvm/lldb/source/Host/windows/
H A DHost.cpp271 auto str_sp = item_sp->GetAsString(); in ShellExpandArguments()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp199 << 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 DTraceIntelPTBundleSaver.cpp286 JSONUINT64{load_addr}, module_sp->GetUUID().GetAsString()}); in BuildModulesSection()

12