Lines Matching refs:GUID
1898 //Dummy representation of a Base64 encoded GUID from create_unique_font_name.
1900 //Length of GUID representation from create_id, including NULL terminator.
1907 It would be easier to hex encode the GUID, but that is 32 bytes,
1918 Formats a GUID into Base64 and places it into buffer.
1923 static void format_guid_b64(const GUID& guid, char* buffer, size_t bufferSize) {
1925 size_t written = SkBase64::Encode(&guid, sizeof(guid), buffer, postscript_safe_base64_encode);
1931 Creates a Base64 encoded GUID and places it into buffer.
1937 GUID guid = {};
1938 if (FAILED(CoCreateGuid(&guid))) {
1941 format_guid_b64(guid, buffer, bufferSize);