Searched refs:CoreIPC (Results 1 - 25 of 258) sorted by relevance

1234567891011

/external/webkit/Source/WebKit2/PluginProcess/
H A DWebProcessConnection.h42 class WebProcessConnection : public RefCounted<WebProcessConnection>, CoreIPC::Connection::Client {
44 static PassRefPtr<WebProcessConnection> create(CoreIPC::Connection::Identifier);
47 CoreIPC::Connection* connection() const { return m_connection.get(); }
53 WebProcessConnection(CoreIPC::Connection::Identifier);
59 // CoreIPC::Connection::Client
60 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
61 virtual CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC
[all...]
H A DPluginProcess.h47 void initialize(CoreIPC::Connection::Identifier, RunLoop*);
70 // CoreIPC::Connection::Client
71 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
72 virtual void didClose(CoreIPC::Connection*);
73 virtual void didReceiveInvalidMessage(CoreIPC::Connection*, CoreIPC::MessageID);
74 virtual void syncMessageSendTimedOut(CoreIPC::Connection*);
77 void didReceivePluginProcessMessage(CoreIPC
[all...]
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.h36 // A CoreIPC connection to a plug-in process.
44 class PluginProcessConnection : public RefCounted<PluginProcessConnection>, CoreIPC::Connection::Client {
46 static PassRefPtr<PluginProcessConnection> create(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
54 CoreIPC::Connection* connection() const { return m_connection.get(); }
62 PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier);
64 // CoreIPC::Connection::Client
65 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66 virtual CoreIPC
[all...]
H A DPluginProcessConnection.cpp50 return CoreIPC::Connection::NoTimeout;
55 PluginProcessConnection::PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
59 m_connection = CoreIPC::Connection::createClientConnection(connectionIdentifier, this, WebProcess::shared().runLoop());
101 void PluginProcessConnection::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
112 CoreIPC::SyncReplyMode PluginProcessConnection::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DFontInfo.cpp37 void FontInfo::encode(CoreIPC::ArgumentEncoder* encoder) const
40 CoreIPC::encode(encoder, fontAttributeDictionary.get());
44 bool FontInfo::decode(CoreIPC::ArgumentDecoder* decoder, FontInfo& fontInfo)
47 if (!CoreIPC::decode(decoder, fontInfo.fontAttributeDictionary))
H A DOriginAndDatabases.cpp35 void OriginAndDatabases::encode(CoreIPC::ArgumentEncoder* encoder) const
37 encoder->encode(CoreIPC::In(originIdentifier, originQuota, originUsage, databases));
40 bool OriginAndDatabases::decode(CoreIPC::ArgumentDecoder* decoder, OriginAndDatabases& originAndDatabases)
42 return decoder->decode(CoreIPC::Out(originAndDatabases.originIdentifier, originAndDatabases.originQuota, originAndDatabases.originUsage, originAndDatabases.databases));
H A DPrintInfo.cpp42 void PrintInfo::encode(CoreIPC::ArgumentEncoder* encoder) const
44 encoder->encode(CoreIPC::In(pageSetupScaleFactor, availablePaperWidth, availablePaperHeight));
47 bool PrintInfo::decode(CoreIPC::ArgumentDecoder* decoder, PrintInfo& info)
49 return decoder->decode(CoreIPC::Out(info.pageSetupScaleFactor, info.availablePaperWidth, info.availablePaperHeight));
H A DWebPageGroupData.cpp34 void WebPageGroupData::encode(CoreIPC::ArgumentEncoder* encoder) const
36 return encoder->encode(CoreIPC::In(identifer, pageGroupID, visibleToInjectedBundle, visibleToHistoryClient));
39 bool WebPageGroupData::decode(CoreIPC::ArgumentDecoder* decoder, WebPageGroupData& data)
41 return decoder->decode(CoreIPC::Out(data.identifer, data.pageGroupID, data.visibleToInjectedBundle, data.visibleToHistoryClient));
H A DFontInfo.h33 namespace CoreIPC { namespace
41 void encode(CoreIPC::ArgumentEncoder*) const;
42 static bool decode(CoreIPC::ArgumentDecoder*, FontInfo&);
H A DWebPageGroupData.h31 namespace CoreIPC { namespace
39 void encode(CoreIPC::ArgumentEncoder*) const;
40 static bool decode(CoreIPC::ArgumentDecoder*, WebPageGroupData&);
H A DLayerTreeContext.h29 namespace CoreIPC { namespace
43 void encode(CoreIPC::ArgumentEncoder*) const;
44 static bool decode(CoreIPC::ArgumentDecoder*, LayerTreeContext&);
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/
H A DWebApplicationCacheManager.h32 namespace CoreIPC { namespace
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebApplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/
H A DWebKeyValueStorageManager.h32 namespace CoreIPC { namespace
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebKeyValueStorageManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/MediaCache/
H A DWebMediaCacheManager.h32 namespace CoreIPC { namespace
46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
55 void didReceiveWebMediaCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFullScreenManagerProxy.h35 namespace CoreIPC { namespace
75 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
76 CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply);
102 void didReceiveWebFullScreenManagerProxyMessage(CoreIPC
[all...]
H A DWebGeolocationManagerProxy.h33 namespace CoreIPC { namespace
58 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66 void didReceiveWebGeolocationManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
H A DWebIconDatabase.h40 namespace CoreIPC { namespace
70 void setIconDataForIconURL(const CoreIPC::DataReference&, const String&);
72 void synchronousIconDataForPageURL(const String&, CoreIPC::DataReference&);
95 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
96 CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC
[all...]
/external/webkit/Source/WebKit2/Shared/mac/
H A DAttributedString.mm35 void AttributedString::encode(CoreIPC::ArgumentEncoder* encoder) const
40 CoreIPC::encode(encoder, string.get());
43 bool AttributedString::decode(CoreIPC::ArgumentDecoder* decoder, AttributedString& attributedString)
50 return CoreIPC::decode(decoder, attributedString.string);
H A DAttributedString.h33 namespace CoreIPC { namespace
41 void encode(CoreIPC::ArgumentEncoder*) const;
42 static bool decode(CoreIPC::ArgumentDecoder*, AttributedString&);
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DPluginProcessCreationParameters.h37 namespace CoreIPC { namespace
47 void encode(CoreIPC::ArgumentEncoder*) const;
48 static bool decode(CoreIPC::ArgumentDecoder*, PluginProcessCreationParameters&);
54 CoreIPC::MachPort acceleratedCompositingPort;
/external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
H A DThreadLauncherGtk.cpp34 CoreIPC::Connection::Identifier ThreadLauncher::createWebThread()
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.h31 namespace CoreIPC { namespace
53 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
65 void didReceiveAuthenticationManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/Cookies/
H A DWebCookieManager.h33 namespace CoreIPC { namespace
46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66 void didReceiveWebCookieManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DWebGeolocationManager.h35 namespace CoreIPC { namespace
60 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
64 void didReceiveWebGeolocationManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/
H A DWebResourceCacheManager.h35 namespace CoreIPC { namespace
50 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebResourceCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);

Completed in 210 milliseconds

1234567891011