/openbsd/regress/lib/libc/uuid/ |
H A D | uuidtest.c | 30 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 D | LocateSymbolFile.cpp | 317 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 D | LocateSymbolFileMacOSX.cpp | 580 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 D | SymbolVendorMacOSX.cpp | 163 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 D | modify.c | 126 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 D | ModuleList.cpp | 932 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 D | symbolication.py | 372 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 D | crashlog.py | 271 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 D | mach_o.py | 1480 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 D | DynamicLoaderMacOS.cpp | 574 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 D | GDBRemoteCommunicationServerCommon.cpp | 1117 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 D | DynamicLoaderDarwinKernel.cpp | 483 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 D | sanitizer_mac.cpp | 1373 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 D | ProcessMachCore.cpp | 283 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 D | CommunicationKDP.cpp | 443 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 D | BreakpadRecords.cpp | 114 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 D | CommandObjectTarget.cpp | 2855 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()
|