Lines Matching full:guid
2 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.
406 IN CONST GUID *Guid1,
407 IN CONST GUID *Guid2
411 Scans a target buffer for a GUID, and returns a pointer to the matching GUID
416 GUID value that matches Guid. If a match is found, then a pointer to the matching
417 GUID in the target buffer is returned. If no match is found, then NULL is returned.
427 @param Guid The value to search for in the target buffer.
429 @return A pointer to the matching Guid in the target buffer, otherwise NULL.
437 IN CONST GUID *Guid
441 Checks if the given GUID is a zero GUID.
443 This function checks whether the given GUID is a zero GUID. If the GUID is
444 identical to a zero GUID then TRUE is returned. Otherwise, FALSE is returned.
446 If Guid is NULL, then ASSERT().
448 @param Guid The pointer to a 128 bit GUID.
450 @retval TRUE Guid is a zero GUID.
451 @retval FALSE Guid is not a zero GUID.
457 IN CONST GUID *Guid