| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
| H A D | SymbolLocatorDefault.cpp | 170 std::string uuid_str; in LocateExecutableSymbolFile() local 175 uuid_str = module_uuid.GetAsString(""); in LocateExecutableSymbolFile() 176 std::transform(uuid_str.begin(), uuid_str.end(), uuid_str.begin(), in LocateExecutableSymbolFile() 178 uuid_str.insert(2, 1, '/'); in LocateExecutableSymbolFile() 179 uuid_str = uuid_str + ".debug"; in LocateExecutableSymbolFile() 192 if (!uuid_str.empty()) in LocateExecutableSymbolFile() 193 files.push_back(dirname + "/.build-id/" + uuid_str); in LocateExecutableSymbolFile()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | LocateSymbolFile.cpp | |
| H A D | LocateSymbolFileMacOSX.cpp | |
| /freebsd/contrib/wpa/wpa_supplicant/ |
| H A D | wps_supplicant.c | 753 char uuid_str[100]; in wpa_supplicant_wps_event_er_ap_add() local 756 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_add() 765 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state, in wpa_supplicant_wps_event_er_ap_add() 778 char uuid_str[100]; in wpa_supplicant_wps_event_er_ap_remove() local 779 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_remove() 780 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str); in wpa_supplicant_wps_event_er_ap_remove() 787 char uuid_str[100]; in wpa_supplicant_wps_event_er_enrollee_add() local 790 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_add() 800 uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received, in wpa_supplicant_wps_event_er_enrollee_add() 813 char uuid_str[100]; in wpa_supplicant_wps_event_er_enrollee_remove() local [all …]
|
| H A D | ctrl_iface.c | 2545 char uuid_str[100]; in wpa_supplicant_ctrl_iface_status() local 2546 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_ctrl_iface_status() 2547 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str); in wpa_supplicant_ctrl_iface_status()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
| H A D | DynamicLoaderFreeBSDKernel.cpp | 229 std::string uuid_str; in CheckForKernelImageAtAddress() local 231 uuid_str = "with UUID "; in CheckForKernelImageAtAddress() 232 uuid_str += memory_module_sp->GetUUID().GetAsString(); in CheckForKernelImageAtAddress() 234 uuid_str = "and no LC_UUID found in load commands "; in CheckForKernelImageAtAddress() 239 addr, kernel_arch.GetTriple().str().c_str(), uuid_str.c_str()); in CheckForKernelImageAtAddress()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | ModuleList.cpp | 936 std::string uuid_str; in GetSharedModule() local 938 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 941 if (!uuid_str.empty()) in GetSharedModule() 944 arch.GetArchitectureName(), uuid_str.c_str()); in GetSharedModule() 1018 std::string uuid_str; in GetSharedModule() local 1020 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 1022 if (!uuid_str.empty()) in GetSharedModule() 1024 "cannot locate a module for UUID '%s'", uuid_str.c_str()); in GetSharedModule()
|
| /freebsd/usr.sbin/efitable/ |
| H A D | efitable.c | 92 char *uuid_str = optarg; in main() local 106 uuid_from_string(uuid_str, &uuid, &status); in main()
|
| /freebsd/lib/libefivar/ |
| H A D | efivar.c | 102 if (efi_str_to_guid(ent->uuid_str, &ent->guid) != 0) in efi_guid_tbl_compile() 104 ent->uuid_str, ent->name); in efi_guid_tbl_compile()
|
| H A D | efivar.h | 95 const char *uuid_str; member
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerCommon.cpp | 1119 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); in Handle_qModuleInfo() local 1123 if (uuid_str.empty()) { in Handle_qModuleInfo() 1132 response.PutStringAsRawHex8(uuid_str); in Handle_qModuleInfo() 1187 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); in Handle_jModulesInfo() local 1188 if (uuid_str.empty()) in Handle_jModulesInfo() 1194 json::Object response{{"uuid", uuid_str}, in Handle_jModulesInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
| H A D | SymbolLocatorDebugSymbols.cpp | 1054 const std::string uuid_str = uuid_ptr ? uuid_ptr->GetAsString() : ""; in DownloadObjectAndSymbolFile() local 1056 std::string lookup_arg = uuid_str; in DownloadObjectAndSymbolFile() 1126 if (!uuid_str.empty()) { in DownloadObjectAndSymbolFile() 1127 CFCString uuid_cfstr(uuid_str.c_str()); in DownloadObjectAndSymbolFile()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_mac.cpp | 1372 char uuid_str[128]; in DumpProcessMap() local 1373 FormatUUID(uuid_str, sizeof(uuid_str), modules[i].uuid()); in DumpProcessMap() 1376 ModuleArchToString(modules[i].arch()), uuid_str); in DumpProcessMap()
|
| /freebsd/usr.sbin/efivar/ |
| H A D | efivar.c | 305 printf("%s %s\n", tbl[i].uuid_str, tbl[i].name); in print_known_guid()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | BreakpadRecords.cpp | 116 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); in parseModuleId() 119 llvm::copy(fromHex(uuid_str), data.uuid); in parseModuleId() 115 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); parseModuleId() local
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 3096 std::string uuid_str; in DoExecute() local 3104 uuid_str = module_spec.GetUUID().GetAsString(); in DoExecute() 3108 path, !uuid_str.empty() ? " uuid=" : "", uuid_str.c_str()); in DoExecute() 3118 path[0] ? " file=" : "", path, !uuid_str.empty() ? " uuid=" : "", in DoExecute() 3119 uuid_str.c_str()); in DoExecute()
|