Searched refs:uuid_str (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/apr-util/crypto/
H A Duuid.c95 const char *uuid_str)
101 char c = uuid_str[i];
107 if (uuid_str[36] != '\0') {
112 d[0] = parse_hexpair(&uuid_str[0]);
113 d[1] = parse_hexpair(&uuid_str[2]);
114 d[2] = parse_hexpair(&uuid_str[4]);
115 d[3] = parse_hexpair(&uuid_str[6]);
117 d[4] = parse_hexpair(&uuid_str[9]);
118 d[5] = parse_hexpair(&uuid_str[11]);
120 d[6] = parse_hexpair(&uuid_str[1
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_uuid.h67 * @param uuid_str The formatted UUID
69 APU_DECLARE(apr_status_t) apr_uuid_parse(apr_uuid_t *uuid, const char *uuid_str);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp307 std::string uuid_str; local
312 uuid_str = module_uuid.GetAsString("");
313 std::transform(uuid_str.begin(), uuid_str.end(), uuid_str.begin(),
315 uuid_str.insert(2, 1, '/');
316 uuid_str = uuid_str + ".debug";
329 if (!uuid_str.empty())
330 files.push_back(dirname + "/.build-id/" + uuid_str);
[all...]
H A DLocateSymbolFileMacOSX.cpp565 std::string uuid_str; local
570 uuid_str = uuid_ptr->GetAsString();
576 if (!uuid_str.empty())
578 g_dsym_for_uuid_exe_path, uuid_str.c_str());
589 if (!uuid_str.empty())
591 g_dsym_for_uuid_exe_path, uuid_str.c_str());
616 if (!uuid_str.empty()) {
617 CFCString uuid_cfstr(uuid_str.c_str());
650 if (!uuid_str.empty())
652 g_dsym_for_uuid_exe_path, uuid_str
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtypes.c85 char *uuid_str = apr_pcalloc(pool, APR_UUID_FORMATTED_LENGTH + 1); local
87 apr_uuid_format(uuid_str, &uuid);
88 return uuid_str;
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dwps_supplicant.c737 char uuid_str[100]; local
740 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
749 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
762 char uuid_str[100]; local
763 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
764 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
771 char uuid_str[100]; local
774 uuid_bin2str(enrollee->uuid, uuid_str, sizeo
797 char uuid_str[100]; local
808 char uuid_str[100]; local
834 char uuid_str[100]; local
[all...]
H A Dctrl_iface.c2322 char uuid_str[100]; local
2323 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
2324 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
/freebsd-11-stable/lib/libefivar/
H A Defivar.h93 const char *uuid_str; member in struct:uuid_table
H A Defivar.c95 uuid_from_string(guid_tbl[i].uuid_str, &guid_tbl[i].guid,
100 guid_tbl[i].uuid_str, guid_tbl[i].name, (int)status);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp861 std::string uuid_str; local
863 uuid_str = uuid_ptr->GetAsString();
866 if (!uuid_str.empty())
869 arch.GetArchitectureName(), uuid_str.c_str());
941 std::string uuid_str; local
943 uuid_str = uuid_ptr->GetAsString();
945 if (!uuid_str.empty())
947 "cannot locate a module for UUID '%s'", uuid_str.c_str());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1090 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); local
1094 if (uuid_str.empty()) {
1103 response.PutStringAsRawHex8(uuid_str);
1157 const auto uuid_str = matched_module_spec.GetUUID().GetAsString(""); local
1158 if (uuid_str.empty())
1164 json::Object response{{"uuid", uuid_str},
/freebsd-11-stable/usr.sbin/efivar/
H A Defivar.c250 printf("%s %s\n", tbl[i].uuid_str, tbl[i].name);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp1192 char uuid_str[128]; local
1193 FormatUUID(uuid_str, sizeof(uuid_str), modules[i].uuid());
1196 ModuleArchToString(modules[i].arch()), uuid_str);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp109 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>());
112 llvm::copy(fromHex(uuid_str), data.uuid);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp2851 std::string uuid_str; variable
2859 uuid_str = module_spec.GetUUID().GetAsString();
2863 path, !uuid_str.empty() ? " uuid=" : "", uuid_str.c_str());
2873 path[0] ? " file=" : "", path, !uuid_str.empty() ? " uuid=" : "",
2874 uuid_str.c_str());

Completed in 222 milliseconds