Lines Matching full:guid
1950 //Dummy representation of a Base64 encoded GUID from create_unique_font_name.
1952 //Length of GUID representation from create_id, including NULL terminator.
1959 It would be easier to hex encode the GUID, but that is 32 bytes,
1970 Formats a GUID into Base64 and places it into buffer.
1975 static void format_guid_b64(const GUID& guid, char* buffer, size_t bufferSize) {
1977 size_t written = SkBase64::Encode(&guid, sizeof(guid), buffer, postscript_safe_base64_encode);
1983 Creates a Base64 encoded GUID and places it into buffer.
1989 GUID guid = {};
1990 if (FAILED(CoCreateGuid(&guid))) {
1993 format_guid_b64(guid, buffer, bufferSize);