/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/usr.sbin/efitable/ |
H A D | efitable.c | 88 char *uuid_str = optarg; in main() local 94 uuid_from_string(uuid_str, &uuid, &status); in main()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ModuleList.cpp | 935 std::string uuid_str; in GetSharedModule() local 937 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 940 if (!uuid_str.empty()) in GetSharedModule() 943 arch.GetArchitectureName(), uuid_str.c_str()); in GetSharedModule() 1015 std::string uuid_str; in GetSharedModule() local 1017 uuid_str = uuid_ptr->GetAsString(); in GetSharedModule() 1019 if (!uuid_str.empty()) in GetSharedModule() 1021 "cannot locate a module for UUID '%s'", uuid_str.c_str()); in GetSharedModule()
|
/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/lib/libefivar/ |
H A D | efivar.c | 92 uuid_from_string(guid_tbl[i].uuid_str, &guid_tbl[i].guid, in efi_guid_tbl_compile() 97 guid_tbl[i].uuid_str, guid_tbl[i].name, (int)status); in efi_guid_tbl_compile()
|
H A D | efivar.h | 90 const char *uuid_str; member
|
/freebsd/contrib/llvm-project/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()
|
/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 | 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()
|
/freebsd/usr.sbin/efivar/ |
H A D | efivar.c | 306 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 | 3068 std::string uuid_str; in DoExecute() local 3076 uuid_str = module_spec.GetUUID().GetAsString(); in DoExecute() 3080 path, !uuid_str.empty() ? " uuid=" : "", uuid_str.c_str()); in DoExecute() 3090 path[0] ? " file=" : "", path, !uuid_str.empty() ? " uuid=" : "", in DoExecute() 3091 uuid_str.c_str()); in DoExecute()
|