HomeSort by relevance Sort by last modified time
    Searched refs:HostFunctions (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/content/test/plugin/
plugin_npobject_proxy_test.cc 22 NPIdentifier document_id = HostFunctions()->getstringidentifier("document");
23 NPIdentifier create_text_node_id = HostFunctions()->getstringidentifier("createTextNode");
24 NPIdentifier append_child_id = HostFunctions()->getstringidentifier("appendChild");
28 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window_obj);
30 HostFunctions()->getproperty(id(), window_obj, document_id, &docv);
38 HostFunctions()->invoke(id(), doc, create_text_node_id, &strv, 1, &textv);
41 HostFunctions()->invoke(id(), doc, append_child_id, &textv, 1, &v);
plugin_private_test.cc 23 NPNetscapeFuncs* browser = NPAPIClient::PluginClient::HostFunctions();
29 NPIdentifier location = HostFunctions()->getstringidentifier("location");
30 NPIdentifier href = HostFunctions()->getstringidentifier("href");
33 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window_obj);
36 HostFunctions()->getproperty(id(), window_obj, location, &location_var);
39 HostFunctions()->getproperty(id(), NPVARIANT_TO_OBJECT(location_var), href,
47 HostFunctions()->releasevariantvalue(&href_var);
48 HostFunctions()->releasevariantvalue(&location_var);
49 HostFunctions()->releaseobject(window_obj);
plugin_client.h 37 static NPNetscapeFuncs *HostFunctions() { return host_functions_; }
plugin_delete_plugin_in_stream_test.cc 27 HostFunctions()->geturlnotify(id(), url.c_str(), NULL,
36 NPIdentifier delete_id = HostFunctions()->getstringidentifier("DeletePluginWithinScript");
39 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window_obj);
42 HostFunctions()->invoke(id(), window_obj, delete_id, NULL, 0, &rv);
plugin_npobject_identity_test.cc 58 NPIdentifier are_these_the_same_id = HostFunctions()->getstringidentifier(
63 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window);
65 HostFunctions()->getproperty(id(), window, are_these_the_same_id, &func_var);
69 NPObject* thingy = HostFunctions()->createobject(id(), GetNPThingyClass());
74 HostFunctions()->invokeDefault(id(), func, (const NPVariant*)&func_args, 2,
82 HostFunctions()->releaseobject(thingy);
plugin_thread_async_call_test.cc 84 HostFunctions()->pluginthreadasynccall(id(), OnCallSucceededHelper, this);
89 NPIdentifier delete_id = HostFunctions()->getstringidentifier(
93 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window_obj);
96 HostFunctions()->invoke(id(), window_obj, delete_id, NULL, 0, &result);
102 HostFunctions()->pluginthreadasynccall(id(), OnCallFailed, NULL);
105 HostFunctions()->pluginthreadasynccall(g_long_lived_instance->id(),
plugin_delete_plugin_in_deallocate_test.cc 91 npobject_ = HostFunctions()->createobject(
96 test_object->host_functions_ = HostFunctions();
100 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window);
104 HostFunctions()->getstringidentifier("setTestObject");
107 HostFunctions()->getproperty(id(), window, set_test_object_id, &func_var);
113 HostFunctions()->invokeDefault(id(), func, &func_arg, 1,
117 HostFunctions()->releaseobject(npobject_);
plugin_npobject_lifetime_test.cc 55 this_instance->HostFunctions()->retainobject(
62 this_instance->HostFunctions()->geturlnotify(
70 NPIdentifier identifier = HostFunctions()->getstringidentifier("location");
74 bool b1 = HostFunctions()->getproperty(id(), other_plugin_instance_object_,
76 HostFunctions()->releaseobject(other_plugin_instance_object_);
89 HostFunctions()->releaseobject(plugin_instance_object_);
99 if (!HostFunctions()->getvalue(id(), NPNVWindowNPObject,
121 HostFunctions()->releaseobject(plugin_instance_object_);
150 g_npn_evaluate_test_instance_->HostFunctions()->getvalue(
168 bool result = g_npn_evaluate_test_instance_->HostFunctions()->evaluate
    [all...]
plugin_geturl_test.cc 108 HostFunctions()->geturl(id(), page_not_found_url_.c_str(), NULL);
111 HostFunctions()->geturl(id(), fail_write_url_.c_str(), NULL);
114 HostFunctions()->pushpopupsenabledstate(id(), true);
115 HostFunctions()->geturl(id(), referrer_target_url_.c_str(), "_blank");
116 HostFunctions()->poppopupsenabledstate(id());
119 HostFunctions()->geturlnotify(
124 HostFunctions()->geturlnotify(
133 HostFunctions()->geturlnotify(id(), url.c_str(), NULL,
138 HostFunctions()->geturlnotify(id(), bogus_url.c_str(), NULL,
164 HostFunctions()->getvalue(id(), NPNVWindowNPObject, &window_obj)
    [all...]
plugin_execute_stream_javascript.cc 50 NPAPIClient::PluginClient::HostFunctions()->getvalue(
54 NPAPIClient::PluginClient::HostFunctions()->evaluate(
plugin_windowed_test.cc 84 HostFunctions()->getvalue(id(), NPNVWindowNPObject,&window_obj);
96 bool result = HostFunctions()->evaluate(
111 NPIdentifier function_id = this_ptr->HostFunctions()->getstringidentifier(
115 this_ptr->HostFunctions()->getvalue(
119 this_ptr->HostFunctions()->invoke(
plugin_schedule_timer_test.cc 107 HostFunctions()->unscheduletimer(
113 timer_ids_[event.scheduled_index] = HostFunctions()->scheduletimer(
plugin_client.cc 84 instance, NPAPIClient::PluginClient::HostFunctions());
101 instance, NPAPIClient::PluginClient::HostFunctions());
108 NPAPIClient::PluginClient::HostFunctions());
114 NPError drawing_ret = NPAPIClient::PluginClient::HostFunctions()->setvalue(
116 NPError event_ret = NPAPIClient::PluginClient::HostFunctions()->setvalue(
125 NPAPIClient::PluginClient::HostFunctions()->setvalue(
plugin_get_javascript_url_test.cc 43 HostFunctions()->geturlnotify(id(), url.c_str(), "_top",
76 this_instance->HostFunctions()->getvalue(this_instance->id(),
92 NPError result = this_instance->HostFunctions()->evaluate(
plugin_request_read_test.cc 30 NPError result = HostFunctions()->geturl(id(),
47 NPError result = HostFunctions()->requestread(stream,
plugin_javascript_open_popup.cc 33 HostFunctions()->geturl(
plugin_create_instance_in_paint.cc 70 this_instance->HostFunctions()->geturlnotify(
plugin_get_javascript_url2_test.cc 33 HostFunctions()->geturlnotify(id(), url.c_str(), "_self",
plugin_test.h 86 NPNetscapeFuncs *HostFunctions() { return host_functions_; }
plugin_windowless_test.cc 87 NPAPIClient::PluginClient::HostFunctions(), g_other_instance->id(),
95 NPNetscapeFuncs* browser = NPAPIClient::PluginClient::HostFunctions();

Completed in 348 milliseconds