Lines Matching refs:guid

70     GUID guid;  member
652 static ScriptHost *create_script_host(HTMLInnerWindow *window, const GUID *guid) in create_script_host() argument
671 ret->guid = *guid; in create_script_host()
674 hres = CoCreateInstance(&ret->guid, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER, in create_script_host()
1060 : LIST_ENTRY(list_head(&window->script_hosts), ScriptHost, entry)->guid; in get_default_script_guid()
1063 static BOOL get_guid_from_type(LPCWSTR type, GUID *guid) in get_guid_from_type() argument
1074 *guid = CLSID_JScript; in get_guid_from_type()
1076 *guid = CLSID_VBScript; in get_guid_from_type()
1085 static BOOL get_guid_from_language(LPCWSTR type, GUID *guid) in get_guid_from_language() argument
1089 hres = CLSIDFromProgID(type, guid); in get_guid_from_language()
1098 static BOOL get_script_guid(HTMLInnerWindow *window, nsIDOMHTMLScriptElement *nsscript, GUID *guid) in get_script_guid() argument
1116 ret = get_guid_from_type(type, guid); in get_script_guid()
1131 ret = get_guid_from_language(language, guid); in get_script_guid()
1133 *guid = get_default_script_guid(window); in get_script_guid()
1142 static ScriptHost *get_script_host(HTMLInnerWindow *window, const GUID *guid) in get_script_host() argument
1147 if(IsEqualGUID(guid, &iter->guid)) in get_script_host()
1151 return create_script_host(window, guid); in get_script_host()
1156 GUID guid; in get_elem_script_host() local
1158 if(!get_script_guid(window, script_elem->nsscript, &guid)) { in get_elem_script_host()
1163 if(IsEqualGUID(&CLSID_JScript, &guid) in get_elem_script_host()
1169 return get_script_host(window, &guid); in get_elem_script_host()
1187 GUID guid; in script_parse_event() local
1208 b = get_guid_from_language(language, &guid); in script_parse_event()
1220 guid = get_default_script_guid(window); in script_parse_event()
1223 if(IsEqualGUID(&CLSID_JScript, &guid) in script_parse_event()
1229 script_host = get_script_host(window, &guid); in script_parse_event()
1249 GUID guid; in exec_script() local
1254 if(!get_guid_from_language(lang, &guid)) { in exec_script()
1259 script_host = get_script_host(window, &guid); in exec_script()