HomeSort by relevance Sort by last modified time
    Searched refs:ArgumentDecoder (Results 101 - 125 of 198) sorted by null

1 2 3 45 6 7 8

  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 48 bool decodeImage(ArgumentDecoder* decoder, RefPtr<Image>& image)
WebGeolocationPosition.h 31 #include "ArgumentDecoder.h"
42 static bool decode(CoreIPC::ArgumentDecoder*, Data&);
WebGestureEvent.cpp 54 bool WebGestureEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebGestureEvent& t)
WebTouchEvent.cpp 54 bool WebTouchEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebTouchEvent& t)
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 29 #include "ArgumentDecoder.h"
62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk)
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationChallengeProxy.h 34 class ArgumentDecoder;
  /external/webkit/Source/WebKit2/UIProcess/
WebGeolocationManagerProxy.cpp 75 void WebGeolocationManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
WebFullScreenManagerProxy.cpp 62 void WebFullScreenManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
67 CoreIPC::SyncReplyMode WebFullScreenManagerProxy::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply)
ChunkedUpdateDrawingAreaProxy.cpp 73 OwnPtr<CoreIPC::ArgumentDecoder> arguments = page->process()->connection()->deprecatedWaitFor(DrawingAreaProxyLegacyMessage::DidSetSize, page->pageID(), 0.04);
151 void ChunkedUpdateDrawingAreaProxy::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
WebInspectorProxy.h 92 void didReceiveWebInspectorProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
93 CoreIPC::SyncReplyMode didReceiveSyncWebInspectorProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*);
  /external/webkit/Source/WebKit2/WebProcess/MediaCache/
WebMediaCacheManager.cpp 49 void WebMediaCacheManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.cpp 44 bool Plugin::Parameters::decode(CoreIPC::ArgumentDecoder* decoder, Parameters& parameters)
Plugin.h 38 class ArgumentDecoder;
65 static bool decode(CoreIPC::ArgumentDecoder*, Parameters&);
PluginProcessConnection.cpp 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::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
ChunkedUpdateDrawingArea.h 53 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
WebInspector.h 51 void didReceiveWebInspectorMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /external/webkit/Source/WebKit2/Shared/mac/
ArgumentCodersMac.mm 30 #import "ArgumentDecoder.h"
102 static bool decode(ArgumentDecoder* decoder, RetainPtr<id>& result)
192 bool decode(ArgumentDecoder* decoder, RetainPtr<NSAttributedString>& result)
234 bool decode(ArgumentDecoder* decoder, RetainPtr<NSColor>& result)
270 bool decode(ArgumentDecoder* decoder, RetainPtr<NSDictionary>& result)
301 bool decode(ArgumentDecoder* decoder, RetainPtr<NSFont>& result)
318 bool decode(ArgumentDecoder* decoder, RetainPtr<NSNumber>& result)
333 bool decode(ArgumentDecoder* decoder, RetainPtr<NSString>& result)
WebCoreArgumentCodersMac.mm 50 bool decodeResourceRequest(ArgumentDecoder* decoder, ResourceRequest& resourceRequest)
85 bool decodeResourceResponse(ArgumentDecoder* decoder, ResourceResponse& resourceResponse)
147 bool decodeResourceError(ArgumentDecoder* decoder, ResourceError& resourceError)
PlatformCertificateInfo.mm 30 #import "ArgumentDecoder.h"
63 bool PlatformCertificateInfo::decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& c)
  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.cpp 29 #include "ArgumentDecoder.h"
134 static bool decode(ArgumentDecoder* decoder, RetainPtr<CFTypeRef>& result)
228 bool decode(ArgumentDecoder* decoder, RetainPtr<CFArrayRef>& result)
253 bool decode(ArgumentDecoder* decoder, RetainPtr<CFBooleanRef>& result)
271 bool decode(ArgumentDecoder* decoder, RetainPtr<CFDataRef>& result)
305 bool decode(ArgumentDecoder* decoder, RetainPtr<CFDictionaryRef>& result)
389 bool decode(ArgumentDecoder* decoder, RetainPtr<CFNumberRef>& result)
429 bool decode(ArgumentDecoder* decoder, RetainPtr<CFStringRef>& result)
460 bool decode(ArgumentDecoder* decoder, RetainPtr<CFURLRef>& result)
490 bool decode(ArgumentDecoder* decoder, RetainPtr<SecCertificateRef>& result
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 84 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
93 void didReceivePluginProcessProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.h 43 class ArgumentDecoder;
125 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
HandleMessage.h 190 void callMemberFunction(const Arguments0&, ArgumentDecoder* argumentDecoder, C* object, MF function)
192 (object->*function)(argumentDecoder);
196 void callMemberFunction(const Arguments1<P1>& args, ArgumentDecoder* argumentDecoder, C* object, MF function)
198 (object->*function)(args.argument1, argumentDecoder);
202 void callMemberFunction(const Arguments2<P1, P2>& args, ArgumentDecoder* argumentDecoder, C* object, MF function)
204 (object->*function)(args.argument1, args.argument2, argumentDecoder);
208 void callMemberFunction(const Arguments3<P1, P2, P3>& args, ArgumentDecoder* argumentDecoder, C* object, MF function
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPIdentifierData.cpp 31 #include "ArgumentDecoder.h"
80 bool NPIdentifierData::decode(CoreIPC::ArgumentDecoder* decoder, NPIdentifierData& result)
NPObjectMessageReceiver.h 50 CoreIPC::SyncReplyMode didReceiveSyncNPObjectMessageReceiverMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*);

Completed in 112 milliseconds

1 2 3 45 6 7 8