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

  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.h 122 virtual void manualStreamDidReceiveData(const char* bytes, int length) = 0;
PluginProxy.h 81 virtual void manualStreamDidReceiveData(const char* bytes, int length);
PluginProxy.cpp 254 void PluginProxy::manualStreamDidReceiveData(const char* bytes, int length)
256 m_connection->connection()->send(Messages::PluginControllerProxy::ManualStreamDidReceiveData(CoreIPC::DataReference(reinterpret_cast<const uint8_t*>(bytes), length)), m_pluginInstanceID);
PluginView.cpp 342 m_plugin->manualStreamDidReceiveData(bytes, length);
    [all...]
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.h 116 void manualStreamDidReceiveData(const CoreIPC::DataReference& data);
PluginControllerProxy.cpp 415 void PluginControllerProxy::manualStreamDidReceiveData(const CoreIPC::DataReference& data)
420 m_plugin->manualStreamDidReceiveData(reinterpret_cast<const char*>(data.data()), data.size());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 161 virtual void manualStreamDidReceiveData(const char* bytes, int length);
NetscapePlugin.cpp 636 void NetscapePlugin::manualStreamDidReceiveData(const char* bytes, int length)

Completed in 79 milliseconds