Home
last modified time | relevance | path

Searched refs:uuid_str (Results 1 – 17 of 17) sorted by relevance

/openbsd/regress/lib/libc/uuid/
H A Duuidtest.c30 char *uuid_str, *uuid_str_want; in main() local
38 uuid_from_string(uuid_str, &uuid, &status); in main()
41 uuid_str); in main()
51 uuid_from_string(uuid_str, &uuid, &status); in main()
54 uuid_str); in main()
77 uuid_from_string(uuid_str, &uuid, &status); in main()
102 uuid_to_string(&uuid, &uuid_str, &status); in main()
217 uuid_str_want, uuid_str); in main()
229 uuid_str_want, uuid_str); in main()
241 uuid_str_want, uuid_str); in main()
[all …]
/openbsd/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFile.cpp317 std::string uuid_str; in LocateExecutableSymbolFile() local
322 uuid_str = module_uuid.GetAsString(""); in LocateExecutableSymbolFile()
323 std::transform(uuid_str.begin(), uuid_str.end(), uuid_str.begin(), in LocateExecutableSymbolFile()
325 uuid_str.insert(2, 1, '/'); in LocateExecutableSymbolFile()
326 uuid_str = uuid_str + ".debug"; in LocateExecutableSymbolFile()
339 if (!uuid_str.empty()) in LocateExecutableSymbolFile()
340 files.push_back(dirname + "/.build-id/" + uuid_str); in LocateExecutableSymbolFile()
H A DLocateSymbolFileMacOSX.cpp580 const std::string uuid_str = uuid_ptr ? uuid_ptr->GetAsString() : ""; in DownloadObjectAndSymbolFile() local
589 if (!uuid_str.empty()) { in DownloadObjectAndSymbolFile()
592 uuid_str.c_str()); in DownloadObjectAndSymbolFile()
594 dsymForUUID_exe_path.c_str(), uuid_str.c_str(), in DownloadObjectAndSymbolFile()
648 if (!uuid_str.empty()) { in DownloadObjectAndSymbolFile()
649 CFCString uuid_cfstr(uuid_str.c_str()); in DownloadObjectAndSymbolFile()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp163 std::string uuid_str = dsym_uuid.GetAsString(); in CreateInstance() local
164 if (!uuid_str.empty() && !dsym_root.empty()) { in CreateInstance()
168 uuid_str.c_str()); in CreateInstance()
/openbsd/usr.sbin/ldapd/
H A Dmodify.c126 char uuid_str[64]; in ldap_add() local
208 uuid_to_string(&uuid, uuid_str, sizeof(uuid_str)); in ldap_add()
211 if (ober_add_string(set, uuid_str) == NULL) in ldap_add()
/openbsd/gnu/llvm/lldb/source/Core/
H A DModuleList.cpp932 std::string uuid_str; in GetSharedModule() local
934 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule()
937 if (!uuid_str.empty()) in GetSharedModule()
940 arch.GetArchitectureName(), uuid_str.c_str()); in GetSharedModule()
1012 std::string uuid_str; in GetSharedModule() local
1014 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule()
1016 if (!uuid_str.empty()) in GetSharedModule()
1018 "cannot locate a module for UUID '%s'", uuid_str.c_str()); in GetSharedModule()
/openbsd/gnu/llvm/lldb/examples/python/
H A Dsymbolication.py372 uuid_str = self.get_normalized_uuid_string()
373 if uuid_str:
374 self.module = target.AddModule(None, None, uuid_str)
381 resolved_path, None, uuid_str, self.symfile)
H A Dcrashlog.py271 uuid_str = self.get_normalized_uuid_string()
274 print('Getting symbols for %s %s...' % (uuid_str, self.path))
277 self.dsymForUUIDBinary, uuid_str)
287 plist = plist_root[uuid_str]
305 … "com_apple_xcode_dsym_uuids == %s" % uuid_str]).decode("utf-8").splitlines()
327 print('Resolved symbols for %s %s...' % (uuid_str, self.path))
H A Dmach_o.py1480 uuid_str = ''
1482 uuid_str += '%2.2x' % byte
1483 self.uuid = uuid.UUID(uuid_str)
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp574 std::string uuid_str = std::string( in GetSharedCacheInformation() local
576 if (!uuid_str.empty()) in GetSharedCacheInformation()
577 uuid.SetFromStringRef(uuid_str); in GetSharedCacheInformation()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1117 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); in Handle_qModuleInfo() local
1121 if (uuid_str.empty()) { in Handle_qModuleInfo()
1130 response.PutStringAsRawHex8(uuid_str); in Handle_qModuleInfo()
1185 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); in Handle_jModulesInfo() local
1186 if (uuid_str.empty()) in Handle_jModulesInfo()
1192 json::Object response{{"uuid", uuid_str}, in Handle_jModulesInfo()
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp483 std::string uuid_str; in CheckForKernelImageAtAddress() local
485 uuid_str = "with UUID "; in CheckForKernelImageAtAddress()
486 uuid_str += memory_module_sp->GetUUID().GetAsString(); in CheckForKernelImageAtAddress()
488 uuid_str = "and no LC_UUID found in load commands "; in CheckForKernelImageAtAddress()
494 addr, kernel_arch.GetTriple().str().c_str(), uuid_str.c_str()); in CheckForKernelImageAtAddress()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp1373 char uuid_str[128]; in DumpProcessMap() local
1374 FormatUUID(uuid_str, sizeof(uuid_str), modules[i].uuid()); in DumpProcessMap()
1377 ModuleArchToString(modules[i].arch()), uuid_str); in DumpProcessMap()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp283 std::string uuid_str = corefile_identifier.substr(p, 36); in LoadBinariesViaMetadata() local
284 ident_uuid.SetFromStringRef(uuid_str); in LoadBinariesViaMetadata()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp443 std::string uuid_str = m_kernel_version.substr(p, 36); in GetUUID() local
444 if (uuid_str.size() < 32) in GetUUID()
447 if (!uuid.SetFromStringRef(uuid_str)) { in GetUUID()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp114 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); in parseModuleId() local
117 llvm::copy(fromHex(uuid_str), data.uuid); in parseModuleId()
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTarget.cpp2855 std::string uuid_str; in DoExecute() local
2863 uuid_str = module_spec.GetUUID().GetAsString(); in DoExecute()
2867 path, !uuid_str.empty() ? " uuid=" : "", uuid_str.c_str()); in DoExecute()
2877 path[0] ? " file=" : "", path, !uuid_str.empty() ? " uuid=" : "", in DoExecute()
2878 uuid_str.c_str()); in DoExecute()