Home
last modified time | relevance | path

Searched full:guid (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/freebsd/contrib/file/magic/Magdir/
H A Dasf9 #>0 guid 75B22636-668E-11CF-A6D9-00AA0062CE6C
13 #>0 guid 33000890-E5B1-11CF-89F4-00A0C90349CB
14 >0 guid D6E229D3-35DA-11D1-9034-00A0C90349BE ASF_Index_Object
15 >0 guid FEB103F8-12AD-4C64-840F-2A1D2F7AD48C ASF_Media_Object_Index_Object
16 >0 guid 3CB73FD0-0C4A-4803-953D-EDF7B6228F0C ASF_Timecode_Index_Object
19 #>0 guid 8CABDCA1-A947-11CF-8EE4-00C00C205365
22 >0 guid B7DC0791-A9B7-11CF-8EE6-00C00C205365
29 >>24 guid F8699E40-5B4D-11CF-A8FD-00805F5C442B \b, Audio Media (
37 >>24 guid BC19EFC0-5B4D-11CF-A8FD-00805F5C442B \b, Video Media (
55 #>0 guid 5FBF03B5-A92E-11CF-8EE3-00C00C205365
[all …]
H A Defi21 >0 guid D719B2CB-3D3A-4596-A3BC-DAD00E67656F EFI Signature List, SIG DB
22 >0 guid 4AAFD29D-68DF-49EE-8AA9-347D375665A7 EFI Signature List, PKCS7
23 >0 guid 3C5766E8-269C-4E34-AA14-ED776E85B3B6 EFI Signature List, RSA2048
24 >0 guid E2B36190-879B-4A3D-AD8D-F2E7BBA32784 EFI Signature List, RSA2048 SHA256
25 >0 guid 67F8444F-8743-48F1-A328-1EAAB8736080 EFI Signature List, RSA2048 SHA1
26 >0 guid A7717414-C616-4977-9420-844712A735BF EFI Signature List, RSA2048 SHA256 type
27 >0 guid 826CA512-CF10-4AC9-B187-BE01496631BD EFI Signature List, SHA1
28 >0 guid 0B6E5233-A65C-44C9-9407-D9AB83BFC8BD EFI Signature List, SHA224
29 >0 guid C1C41626-504C-4092-ACA9-41F936934328 EFI Signature List, SHA256
30 >0 guid FF3E5307-9FD0-48C9-85F1-8AD56C701E01 EFI Signature List, SHA384
[all …]
/freebsd/lib/libdevdctl/
H A Dguid.h36 * Definition of the Guid class.
46 /*----------------------------------- Guid -----------------------------------*/
51 * value INVALID_GUID that does not equal any valid guid.
55 * refuses to return a guid of 0. So this class uses 0 as the value
57 * guid, the implementation of this class must change.
59 class Guid
63 /* Default constructor: an Invalid guid */
64 Guid();
65 /* Construct a guid from a provided integer */
66 Guid(uint64_t guid);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DGUID.h1 //===- GUID.h ---------------------------------------------------*- C++ -*-===//
20 /// This represents the 'GUID' type from windows.h.
21 struct GUID { struct
22 uint8_t Guid[16]; member
25 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument
26 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid));
29 inline bool operator<(const GUID &LHS, const GUID &RHS) {
30 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0;
33 inline bool operator<=(const GUID &LHS, const GUID &RHS) {
34 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0;
[all …]
/freebsd/sys/contrib/edk2/Include/Library/
H A DPcdLib.h445 Returns the size of the token specified by TokenNumber and Guid.
446 If Guid is NULL, then ASSERT().
448 @param[in] Guid Pointer to a 128-bit unique value that designates
455 #define PcdGetExSize(Guid, TokenName) LibPcdGetExSize ((Guid), PcdTokenEx(Guid,TokenName)) argument
552 Retrieves a token number based on a GUID and a token name.
554 Returns the token number for the token specified by Guid and TokenName.
557 @param Guid Pointer to a 128-bit unique value that designates
564 #define PcdTokenEx(Guid, TokenName) _PCD_TOKEN_EX_##TokenName(Guid) argument
567 Retrieves an 8-bit PCD token value based on a GUID and a token name.
569 Returns the 8-bit value for the token specified by Guid and TokenName.
[all …]
H A DBaseMemoryLib.h2 Provides copy memory, fill memory, zero memory, and GUID functions.
366 Copies a source GUID to a destination GUID.
368 This function copies the contents of the 128-bit GUID specified by SourceGuid to
374 @param DestinationGuid The pointer to the destination GUID.
375 @param SourceGuid The pointer to the source GUID.
380 GUID *
383 OUT GUID *DestinationGuid,
384 IN CONST GUID *SourceGuid
396 @param Guid1 A pointer to a 128 bit GUID.
397 @param Guid2 A pointer to a 128 bit GUID.
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_reguid/
H A Dzpool_reguid_001_pos.ksh24 # Verify 'zpool reguid' can change pool's GUID.
27 # 1. Use zpool get to obtain the initial GUID of a pool.
28 # 2. Change pool's GUID with zpool reguid.
29 # 3. Verify the GUID has changed to a random GUID.
31 # 4. Change pool's GUID with zpool reguid -g.
32 # 5. Verify the GUID has changed to the specified GUID.
35 # set_guid guid [expected_guid]
40 initial_guid="$(zpool get -H -o value guid "$TESTPOOL")"
41 log_assert "Verify 'zpool reguid -g \"$gflag_guid\"' sets GUID as expected."
43 retrieved_guid="$(zpool get -H -o value guid "$TESTPOOL")"
[all …]
H A Dzpool_reguid_002_neg.ksh27 # 1. Call zpool reguid with an invalid GUID.
29 # 3. Verify that the pool GUID did not change.
31 # 4. Call zpool reguid with a GUID that is already in use.
37 initial_guid="$(zpool get -H -o value guid "$TESTPOOL")"
38 log_assert "'zpool reguid' will not accept invalid GUID '$invalid_guid'"
40 log_fail "'zpool reguid' accepted invalid GUID: $invalid_guid"
42 final_guid="$(zpool get -H -o value guid "$TESTPOOL")"
44 log_fail "Invalid GUID change from '$initial_guid' to '$final_guid'"
54 guid="42"
55 log_assert "Verify 'zpool reguid -g' does not accept GUID which are already in use"
[all …]
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_db_pack.h45 * guid2lid - key is a guid and data is a lid.
105 uint64_t guid; member
112 * guid
121 * Provides back a list of guid elements.
133 * [out] A quick list of guid elements of type osm_db_guid_elem_t
151 * Get a lid range by given guid.
155 int osm_db_guid2lid_get(IN osm_db_domain_t * p_g2l, IN uint64_t guid,
162 * guid
163 * [in] The guid to look for
184 * Set a lid range for the given guid.
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_sa_guidinfo_record.c115 p_rec_item->resp.guid_rec.guid_info.guid[0] = osm_physp_get_port_guid(p_physp); in gir_rcv_new_gir()
144 "Looking for GUIDRecord with LID: %u GUID:0x%016" in sa_gir_create_gir()
248 if (p_comp_gi->guid[0] != match_port_guid) in sa_gir_by_comp_mask_cb()
253 if (p_comp_gi->guid[1] != 0) in sa_gir_by_comp_mask_cb()
258 if (p_comp_gi->guid[2] != 0) in sa_gir_by_comp_mask_cb()
263 if (p_comp_gi->guid[3] != 0) in sa_gir_by_comp_mask_cb()
268 if (p_comp_gi->guid[4] != 0) in sa_gir_by_comp_mask_cb()
273 if (p_comp_gi->guid[5] != 0) in sa_gir_by_comp_mask_cb()
278 if (p_comp_gi->guid[6] != 0) in sa_gir_by_comp_mask_cb()
283 if (p_comp_gi->guid[7] != 0) in sa_gir_by_comp_mask_cb()
[all …]
H A Dosm_db_pack.c46 static inline void pack_guid(uint64_t guid, char *p_guid_str) in pack_guid() argument
48 sprintf(p_guid_str, "0x%016" PRIx64, guid); in pack_guid()
102 static inline void pack_neighbor(uint64_t guid, uint8_t portnum, char *p_str) in pack_neighbor() argument
104 sprintf(p_str, "0x%016" PRIx64 ":%u", guid, portnum); in pack_neighbor()
107 static inline int unpack_neighbor(char *p_str, uint64_t *guid, in unpack_neighbor() argument
119 if (guid) in unpack_neighbor()
120 *guid = strtoull(p_num, NULL, 0); in unpack_neighbor()
152 p_guid_elem->guid = unpack_guid(p_key); in osm_db_guid2lid_guids()
160 int osm_db_guid2lid_get(IN osm_db_domain_t * p_g2l, IN uint64_t guid, in osm_db_guid2lid_get() argument
167 pack_guid(guid, guid_str); in osm_db_guid2lid_get()
[all …]
H A Dosm_ucast_file.c58 static uint16_t remap_lid(osm_opensm_t * p_osm, uint16_t lid, ib_net64_t guid) in remap_lid() argument
64 p_port = osm_get_port_by_guid(&p_osm->subn, guid); in remap_lid()
67 "cannot find port guid 0x%016" PRIx64 in remap_lid()
68 " , will use the same lid\n", cl_ntoh64(guid)); in remap_lid()
110 uint16_t lid, ib_net64_t guid, in add_lid_hops() argument
171 q = strstr(p, " guid 0x"); in do_ucast_file_load()
184 "cannot parse switch guid: \'%s\'\n", in do_ucast_file_load()
231 /* additionally try to extract guid */ in do_ucast_file_load()
236 "cannot find port guid " in do_ucast_file_load()
246 "cannot parse port guid " in do_ucast_file_load()
[all …]
/freebsd/lib/libefivar/
H A Defivar.c78 { "ffffffff-ffff-ffff-ffff-ffffffffffff", "zzignore-this-guid", Z },
92 uuid_from_string(guid_tbl[i].uuid_str, &guid_tbl[i].guid, in efi_guid_tbl_compile()
145 efi_append_variable(efi_guid_t guid, const char *name, in efi_append_variable() argument
149 return efi_set_variable(guid, name, data, data_size, in efi_append_variable()
154 efi_del_variable(efi_guid_t guid, const char *name) in efi_del_variable() argument
158 return efi_set_variable(guid, name, NULL, 0, 0); in efi_del_variable()
162 efi_get_variable(efi_guid_t guid, const char *name, in efi_get_variable() argument
176 var.vendor = guid; in efi_get_variable()
193 efi_get_variable_attributes(efi_guid_t guid, const char *name, in efi_get_variable_attributes() argument
198 return efi_get_variable(guid, name, NULL, NULL, attributes); in efi_get_variable_attributes()
[all …]
H A Defivar.335 .Fn efi_append_variable "efi_guid_t guid" "const char *name" "void *data" "size_t data_size" "uint3…
37 .Fn efi_del_variable "efi_guid_t guid" "const char *name"
39 .Fn efi_get_variable "efi_guid_t guid" "const char *name" "void **data" "ssize_t *data_size" "uint3…
41 .Fn efi_get_variable_attributes "efi_guid_t guid" "const char *name" "uint32_t *attributes"
43 .Fn efi_get_variable_size "efi_guid_t guid" "const char *name" "size_t *size"
45 .Fn efi_get_next_variable_name "efi_guid_t **guid" "char **name"
47 .Fn efi_guid_to_name "efi_guid_t *guid" "char **name"
49 .Fn efi_guid_to_symbol "efi_guid_t *guid" "char **symbol"
51 .Fn efi_guid_to_str "const efi_guid_t *guid" "char **sp"
53 .Fn efi_name_to_guid "const char *name" "efi_guid_t *guid"
[all …]
H A Defivar.h67 int efi_append_variable(efi_guid_t guid, const char *name,
69 int efi_del_variable(efi_guid_t guid, const char *name);
70 int efi_get_variable(efi_guid_t guid, const char *name,
72 int efi_get_variable_attributes(efi_guid_t guid, const char *name,
74 int efi_get_variable_size(efi_guid_t guid, const char *name, size_t *size);
75 int efi_get_next_variable_name(efi_guid_t **guid, char **name);
78 int efi_guid_to_name(efi_guid_t *guid, char **name);
79 int efi_guid_to_symbol(efi_guid_t *guid, char **symbol);
80 int efi_guid_to_str(const efi_guid_t *guid, char **sp);
81 int efi_name_to_guid(const char *name, efi_guid_t *guid);
[all …]
/freebsd/usr.sbin/efivar/
H A Defivar.c54 { "guid", no_argument, NULL, 'g' },
64 { "raw-guid", no_argument, NULL, 'R' },
84 "\t[--print] [--print-decimal] [--raw-guid] [--utf8] [--write]\n" in usage()
116 breakdown_name(char *name, efi_guid_t *guid, char **vname) in breakdown_name() argument
126 rep_errx(1, "Invalid guid in: %s", name); in breakdown_name()
133 if (efi_name_to_guid(name, guid) >= 0) in breakdown_name()
157 efi_guid_t guid; in append_variable() local
161 breakdown_name(name, &guid, &vname); in append_variable()
163 if (efi_append_variable(guid, vname, data, datalen, attrib) < 0) in append_variable()
171 efi_guid_t guid; in delete_variable() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp11 #include "llvm/DebugInfo/CodeView/GUID.h"
22 GuidAdapter::GuidAdapter(StringRef Guid) in GuidAdapter() argument
23 : FormatAdapter(ArrayRef(Guid.bytes_begin(), Guid.bytes_end())) {} in GuidAdapter()
25 GuidAdapter::GuidAdapter(ArrayRef<uint8_t> Guid) in GuidAdapter() argument
26 : FormatAdapter(std::move(Guid)) {} in GuidAdapter()
28 // From https://docs.microsoft.com/en-us/windows/win32/msi/guid documentation:
29 // The GUID data type is a text string representing a Class identifier (ID).
31 // The valid format for a GUID is {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} where
36 // The llvm-yaml2obj tool checks that a GUID follow that format:
40 assert(Item.size() == 16 && "Expected 16-byte GUID"); in format()
[all …]
/freebsd/contrib/netbsd-tests/sbin/gpt/
H A Dgpt.backup9 <key>guid</key>
23 <key>guid</key>
37 <key>guid</key>
51 <key>guid</key>
65 <key>guid</key>
79 <key>guid</key>
93 <key>guid</key>
107 <key>guid</key>
121 <key>guid</key>
135 <key>guid</key>
[all …]
/freebsd/sys/contrib/edk2/Include/Uefi/
H A DUefiGpt.h2 EFI Guid Partition Table Format Definition.
13 /// The primary GUID Partition Table Header must be
42 /// LBA address of the alternate GUID Partition Table Header.
47 /// by a partition described by a GUID Partition Entry.
52 /// by a partition described by a GUID Partition Entry.
56 /// GUID that can be used to uniquely identify the disk.
60 /// The starting LBA of the GUID Partition Entry array.
64 /// The number of Partition Entries in the GUID Partition Entry array.
68 /// The size, in bytes, of each the GUID Partition
69 /// Entry structures in the GUID Partition Entry
[all …]
/freebsd/stand/efi/libefi/
H A Defizfs.c52 efizfs_get_handle_by_guid(uint64_t guid) in efizfs_get_handle_by_guid() argument
57 if (zi->zi_pool_guid == guid) { in efizfs_get_handle_by_guid()
65 efizfs_get_guid_by_handle(EFI_HANDLE handle, uint64_t *guid) in efizfs_get_guid_by_handle() argument
69 if (guid == NULL) in efizfs_get_guid_by_handle()
73 *guid = zi->zi_pool_guid; in efizfs_get_guid_by_handle()
81 insert_zfs(EFI_HANDLE handle, uint64_t guid) in insert_zfs() argument
88 zi->zi_pool_guid = guid; in insert_zfs()
99 uint64_t guid; in efi_zfs_probe() local
108 * pool GUID for currdev setup. in efi_zfs_probe()
114 guid = 0; in efi_zfs_probe()
[all …]
/freebsd/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mtl_hca_guid.h38 * Provides interface over VAPI for obtaining the local ports guids or from guid
64 ib_net64_t guid; member
72 * guid
73 * Node GUID of the local CA.
89 * Returns the port GUID of the specified port owned by this CA.
106 * [in] Port "index" for which to retrieve the port GUID.
111 * Returns the port GUID of the specified port owned by this CA.
123 * Given the vendor obj and a guid
124 * return the ca id and port number that have that guid
130 IN ib_net64_t const guid,
[all …]
/freebsd/sys/dev/acpi_support/
H A Dacpi_wmi.c59 #define ACPI_WMI_REGFLAG_EXPENSIVE 0x1 /* GUID flag: Expensive operation */
60 #define ACPI_WMI_REGFLAG_METHOD 0x2 /* GUID flag: Method call */
61 #define ACPI_WMI_REGFLAG_STRING 0x4 /* GUID flag: String */
62 #define ACPI_WMI_REGFLAG_EVENT 0x8 /* GUID flag: Event */
83 * about a single GUID entry in _WDG
86 char guid[16]; /* 16 byte non human readable GUID */ member
88 UINT8 max_instance; /* highest instance known for this GUID */
100 * List of those is used to lookup information by GUID.
104 struct guid_info ginfo; /* information on guid */
150 UINT8 *guid);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp87 // Emit the GUID of the split function that the sentinel probe represents. in emit()
88 MCOS->emitInt64(Guid); in emit()
106 // Probe: GUID of C, ... in addPseudoProbe()
133 // Make an edge by using the previous probe id and current GUID. in addPseudoProbe()
152 // Emit probes grouped by GUID. in emit()
155 dbgs() << "GUID: " << Guid << "\n"; in emit()
157 // Emit Guid in emit()
158 MCOS->emitInt64(Guid); in emit()
166 if (LastProbe->getGuid() != Guid) in emit()
227 // Emit probes grouped by GUID. in emit()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DPGOCtxProfReader.cpp36 PGOContextualProfile::getOrEmplace(uint32_t Index, GlobalValue::GUID G, in getOrEmplace()
42 "Duplicate GUID for same callsite."); in getOrEmplace()
47 DenseSet<GlobalValue::GUID> &Guids) const { in getContainedGuids()
48 Guids.insert(GUID); in getContainedGuids()
80 std::optional<ctx_profile::GUID> Guid; in readContext() local
90 return Guid.has_value() && Counters.has_value() && in readContext()
102 case PGOCtxProfileRecords::Guid: in readContext()
104 return wrongValue("The GUID record should have exactly one value"); in readContext()
105 Guid = RecordValues[0]; in readContext()
127 PGOContextualProfile Ret(*Guid, std::move(*Counters)); in readContext()
[all …]
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_import.c45 * Returns true if the named pool matches the given GUID.
48 pool_active(libzfs_handle_t *hdl, const char *name, uint64_t guid, in pool_active() argument
66 *isactive = (theguid == guid); in pool_active()
108 pool_active_libzfs(void *handle, const char *name, uint64_t guid, in pool_active_libzfs() argument
111 return (pool_active((libzfs_handle_t *)handle, name, guid, isactive)); in pool_active_libzfs()
154 uint64_t state, guid, l2cache; in zpool_clear_label() local
167 /* Skip labels which do not have a valid guid. */ in zpool_clear_label()
169 &guid) != 0 || guid == 0) { in zpool_clear_label()
224 find_guid(nvlist_t *nv, uint64_t guid) in find_guid() argument
229 if (fnvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID) == guid) in find_guid()
[all …]

12345678910>>...27