| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | UUIDTest.cpp | 87 EXPECT_EQ("40414243", UUID::fromData("@ABC", 4).GetAsString()); in TEST() 88 EXPECT_EQ("40414243-4445-4647", UUID::fromData("@ABCDEFG", 8).GetAsString()); in TEST() 90 UUID::fromData("@ABCDEFGHIJK", 12).GetAsString()); in TEST() 92 UUID::fromData("@ABCDEFGHIJKLMNO", 16).GetAsString()); in TEST() 94 UUID::fromData("@ABCDEFGHIJKLMNOPQRS", 20).GetAsString()); in TEST()
|
| /llvm-project-15.0.7/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 | 202 module_stat.uuid = module->GetUUID().GetAsString(); in ReportStatistics()
|
| /llvm-project-15.0.7/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() 589 uuid_str = uuid_ptr->GetAsString(); in DownloadObjectAndSymbolFile()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | UUID.cpp | 48 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString() function in UUID 63 void UUID::Dump(Stream *s) const { s->PutCString(GetAsString()); } in Dump()
|
| H A D | ReproducerProvider.cpp | 122 m_symbol_files.emplace_back(uuid->GetAsString(), module_file.GetPath(), in AddSymbolFile() 165 SymbolFileProvider::Entry(uuid->GetAsString())); in GetPaths()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 130 String *GetAsString() { in GetAsString() function 137 String *s = GetAsString(); 219 if (auto string_value = value_sp->GetAsString()) { in GetItemAtIndexAsString() 238 if (auto string_value = value_sp->GetAsString()) { in GetItemAtIndexAsString() 437 if (auto string_value = value_sp->GetAsString()) { in GetValueForKeyAsString() 461 if (auto string_value = value_sp->GetAsString()) { in GetValueForKeyAsString()
|
| H A D | UUID.h | 81 std::string GetAsString(llvm::StringRef separator = "-") const;
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | OptionValue.h | 238 OptionValueString *GetAsString(); 240 const OptionValueString *GetAsString() const;
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/MacOSX/ |
| H A D | SymbolVendorMacOSX.cpp | 164 std::string uuid_str = dsym_uuid.GetAsString(); in CreateInstance() 230 if (object && object->GetAsString()) { in CreateInstance()
|
| /llvm-project-15.0.7/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() 796 uuid.GetAsString(), file_spec.GetPath()); in PutToLog() 799 address, mod_date, uuid.GetAsString(), file_spec.GetPath()); in PutToLog()
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | DynamicLoaderDarwinKernel.cpp | 489 uuid_str += memory_module_sp->GetUUID().GetAsString(); in CheckForKernelImageAtAddress() 697 m_uuid.GetAsString().c_str(), m_load_address, in ReadMemoryModule() 698 memory_module_sp->GetUUID().GetAsString().c_str()); in ReadMemoryModule() 772 s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule() 1352 uuid = ku.second.GetAsString(); in ParseKextSummaries() 1426 LLDB_LOG(log, "uuid={0} name=\"{1}\" (UNLOADED)", m_uuid.GetAsString(), in PutToLog() 1430 m_load_address, m_size, m_uuid.GetAsString(), m_name); in PutToLog()
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | mod-file.h | 58 std::string GetAsString(const Symbol &);
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 492 ->GetAsString() in FormatDescription() 616 ->GetAsString() in GenerateSummary() 661 ->GetAsString() in GenerateSummary() 760 ->GetAsString() in GetLocationDescription()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedThreadPythonInterface.cpp | 144 return obj->GetAsString()->GetValue().str(); in GetRegisterContext()
|
| /llvm-project-15.0.7/lldb/unittests/Target/ |
| H A D | ModuleCacheTest.cpp | 123 EXPECT_STREQ(module_uuid, module_sp->GetUUID().GetAsString().c_str()); in TryGetAndPut()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | JSONUtils.h | 43 llvm::StringRef GetAsString(const llvm::json::Value &value);
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 195 ->GetAsString() in FormatDescription()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/ |
| H A D | ProcessMachCore.cpp | 359 objfile_binary_uuid.GetAsString().c_str(), objfile_binary_value, in DoLoadCore() 402 ident_uuid.GetAsString().c_str()); in DoLoadCore()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 175 ->GetAsString() in NotifyBreakpointHit()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ModuleList.cpp | 655 module->GetUUID().GetAsString().c_str(), in LogUUIDAndPaths() 925 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 1005 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule()
|
| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | Host.cpp | 271 auto str_sp = item_sp->GetAsString(); in ShellExpandArguments()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | BreakpadRecords.cpp | 198 << R.ID.GetAsString(); in operator <<() 223 return OS << "INFO CODE_ID " << R.ID.GetAsString(); in operator <<()
|