/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | ArgumentDecoder.cpp | 34 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize) in ArgumentDecoder() function in CoreIPC::ArgumentDecoder 39 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attac… in ArgumentDecoder() function in CoreIPC::ArgumentDecoder 46 ArgumentDecoder::~ArgumentDecoder() in ~ArgumentDecoder() 59 void ArgumentDecoder::initialize(const uint8_t* buffer, size_t bufferSize) in initialize() 77 bool ArgumentDecoder::alignBufferPosition(unsigned alignment, size_t size) in alignBufferPosition() 90 bool ArgumentDecoder::bufferIsLargeEnoughToContain(unsigned alignment, size_t size) const in bufferIsLargeEnoughToContain() 95 bool ArgumentDecoder::decodeBytes(Vector<uint8_t>& buffer) in decodeBytes() 111 bool ArgumentDecoder::decodeBytes(DataReference& dataReference) in decodeBytes() 127 bool ArgumentDecoder::decodeBytes(uint8_t* buffer, size_t bufferSize) in decodeBytes() 146 bool ArgumentDecoder::decodeBool(bool& result) in decodeBool() [all …]
|
D | ArgumentDecoder.h | 39 class ArgumentDecoder { 41 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize); 42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&); 43 ~ArgumentDecoder(); 107 ArgumentDecoder(const ArgumentDecoder*); 108 ArgumentDecoder* operator=(const ArgumentDecoder*); 124 template<> inline bool ArgumentDecoder::decode(bool& n) in decode() 129 template<> inline bool ArgumentDecoder::decode(uint32_t& n) in decode() 134 template<> inline bool ArgumentDecoder::decode(uint64_t& n) in decode() 139 template<> inline bool ArgumentDecoder::decode(int32_t& n) in decode() [all …]
|
D | Connection.h | 85 virtual void didReceiveMessage(Connection*, MessageID, ArgumentDecoder*) = 0; 86 …virtual SyncReplyMode didReceiveSyncMessage(Connection*, MessageID, ArgumentDecoder*, ArgumentEnco… in didReceiveSyncMessage() argument 154 …template<typename E> PassOwnPtr<ArgumentDecoder> deprecatedWaitFor(E messageID, uint64_t destinati… 198 PassOwnPtr<ArgumentDecoder> waitForMessage(MessageID, uint64_t destinationID, double timeout); 200 …PassOwnPtr<ArgumentDecoder> sendSyncMessage(MessageID, uint64_t syncRequestID, PassOwnPtr<Argument… 201 PassOwnPtr<ArgumentDecoder> waitForSyncReply(uint64_t syncRequestID, double timeout); 204 void processIncomingMessage(MessageID, PassOwnPtr<ArgumentDecoder>); 205 void processIncomingSyncReply(PassOwnPtr<ArgumentDecoder>); 213 typedef Message<ArgumentDecoder> IncomingMessage; 219 void dispatchSyncMessage(MessageID, ArgumentDecoder*); [all …]
|
D | ArgumentCoders.h | 47 static bool decode(ArgumentDecoder* decoder, T& t) in decode() 60 static bool decode(ArgumentDecoder* decoder, std::pair<T, U>& pair) 86 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) 116 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) 155 static bool decode(ArgumentDecoder* decoder, Vector<uint8_t>& vector) 171 static bool decode(ArgumentDecoder* decoder, HashMapType& hashMap) 212 static bool decode(ArgumentDecoder* decoder, CString& result) 254 static bool decode(ArgumentDecoder* decoder, String& result) 288 static bool decode(ArgumentDecoder* decoder, AtomicString& atomicString)
|
D | Connection.cpp | 307 PassOwnPtr<ArgumentDecoder> Connection::waitForMessage(MessageID messageID, uint64_t destinationID,… in waitForMessage() 317 OwnPtr<ArgumentDecoder> arguments(message.arguments()); in waitForMessage() 344 …HashMap<std::pair<unsigned, uint64_t>, ArgumentDecoder*>::iterator it = m_waitForMessageMap.find(m… in waitForMessage() 346 OwnPtr<ArgumentDecoder> arguments(it->second); in waitForMessage() 361 return PassOwnPtr<ArgumentDecoder>(); in waitForMessage() 364 PassOwnPtr<ArgumentDecoder> Connection::sendSyncMessage(MessageID messageID, uint64_t syncRequestID… in sendSyncMessage() 391 OwnPtr<ArgumentDecoder> reply = waitForSyncReply(syncRequestID, timeout); in sendSyncMessage() 406 PassOwnPtr<ArgumentDecoder> Connection::waitForSyncReply(uint64_t syncRequestID, double timeout) in waitForSyncReply() 451 void Connection::processIncomingSyncReply(PassOwnPtr<ArgumentDecoder> arguments) in processIncomingSyncReply() 481 void Connection::processIncomingMessage(MessageID messageID, PassOwnPtr<ArgumentDecoder> arguments) in processIncomingMessage() [all …]
|
/external/webkit/Source/WebKit2/Shared/cf/ |
D | ArgumentCodersCF.h | 38 class ArgumentDecoder; variable 42 bool decode(ArgumentDecoder*, RetainPtr<CFArrayRef>& result); 46 bool decode(ArgumentDecoder*, RetainPtr<CFBooleanRef>& result); 50 bool decode(ArgumentDecoder*, RetainPtr<CFDataRef>& result); 54 bool decode(ArgumentDecoder*, RetainPtr<CFDictionaryRef>& result); 58 bool decode(ArgumentDecoder*, RetainPtr<CFNumberRef>& result); 62 bool decode(ArgumentDecoder*, RetainPtr<CFStringRef>& result); 66 bool decode(ArgumentDecoder*, RetainPtr<CFURLRef>& result); 71 bool decode(ArgumentDecoder*, RetainPtr<SecCertificateRef>& result);
|
/external/webkit/Source/WebKit2/Shared/mac/ |
D | ArgumentCodersMac.h | 34 class ArgumentDecoder; variable 38 bool decode(ArgumentDecoder*, RetainPtr<NSAttributedString>&); 42 bool decode(ArgumentDecoder*, RetainPtr<NSColor>&); 46 bool decode(ArgumentDecoder*, RetainPtr<NSDictionary>&); 50 bool decode(ArgumentDecoder*, RetainPtr<NSFont>&); 54 bool decode(ArgumentDecoder*, RetainPtr<NSNumber>&); 58 bool decode(ArgumentDecoder*, RetainPtr<NSString>&);
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebCoreArgumentCoders.h | 73 static bool decode(ArgumentDecoder* decoder, WebCore::MimeClassInfo& mimeClassInfo) 95 static bool decode(ArgumentDecoder* decoder, WebCore::PluginInfo& pluginInfo) 116 static bool decode(ArgumentDecoder* decoder, WebCore::HTTPHeaderMap& headerMap) 128 static bool decode(ArgumentDecoder* decoder, WebCore::AuthenticationChallenge& challenge) 151 static bool decode(ArgumentDecoder* decoder, WebCore::ProtectionSpace& space) 174 static bool decode(ArgumentDecoder* decoder, WebCore::Credential& credential) 190 bool decodeImage(ArgumentDecoder*, RefPtr<WebCore::Image>&); 214 static bool decode(ArgumentDecoder* decoder, WebCore::Cursor& cursor) 250 bool decodeResourceRequest(ArgumentDecoder*, WebCore::ResourceRequest&); 258 static bool decode(ArgumentDecoder* decoder, WebCore::ResourceRequest& resourceRequest) [all …]
|
D | WebEvent.h | 37 class ArgumentDecoder; variable 103 static bool decode(CoreIPC::ArgumentDecoder*, WebEvent&); 140 static bool decode(CoreIPC::ArgumentDecoder*, WebMouseEvent&); 195 static bool decode(CoreIPC::ArgumentDecoder*, WebWheelEvent&); 230 static bool decode(CoreIPC::ArgumentDecoder*, WebKeyboardEvent&); 258 static bool decode(CoreIPC::ArgumentDecoder*, WebGestureEvent&); 296 static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&); 317 static bool decode(CoreIPC::ArgumentDecoder*, WebTouchEvent&);
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebFullScreenManagerProxy.h | 36 class ArgumentDecoder; variable 75 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 76 …eceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder* arguments, C… 102 …FullScreenManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 103 …nagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder* arguments, C…
|
D | WebPageProxy.h | 61 class ArgumentDecoder; variable 406 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 407 …void didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, Co… 505 …didReceiveWebPageProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 506 …bPageProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::Ar… 513 …rame(uint64_t frameID, const String& url, const String& unreachableURL, CoreIPC::ArgumentDecoder*); 514 …rverRedirectForProvisionalLoadForFrame(uint64_t frameID, const String&, CoreIPC::ArgumentDecoder*); 515 …rovisionalLoadForFrame(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::ArgumentDecoder*); 516 …ype, bool frameHasCustomRepresentation, const PlatformCertificateInfo&, CoreIPC::ArgumentDecoder*); 517 void didFinishDocumentLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*); [all …]
|
D | WebIconDatabase.h | 41 class ArgumentDecoder; variable 95 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 96 …eceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::Ar… 103 …ReceiveWebIconDatabaseMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 104 …onDatabaseMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::Ar…
|
D | WebGeolocationManagerProxy.h | 34 class ArgumentDecoder; variable 58 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 66 …eolocationManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
D | WebMediaCacheManagerProxy.h | 38 class ArgumentDecoder; variable 64 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 75 …MediaCacheManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
D | WebKeyValueStorageManagerProxy.h | 38 class ArgumentDecoder; variable 66 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 77 …lueStorageManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
D | WebApplicationCacheManagerProxy.h | 38 class ArgumentDecoder; variable 66 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 77 …ationCacheManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/MediaCache/ |
D | WebMediaCacheManager.h | 33 class ArgumentDecoder; variable 46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 55 …veWebMediaCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/ |
D | WebKeyValueStorageManager.h | 33 class ArgumentDecoder; variable 48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 57 …KeyValueStorageManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/ |
D | WebApplicationCacheManager.h | 33 class ArgumentDecoder; variable 48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 57 …pplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/Cookies/ |
D | WebCookieManager.h | 34 class ArgumentDecoder; variable 46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 66 …eceiveWebCookieManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/ |
D | WebResourceCacheManager.h | 36 class ArgumentDecoder; variable 50 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 57 …ebResourceCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/Geolocation/ |
D | WebGeolocationManager.h | 36 class ArgumentDecoder; variable 60 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 64 …eWebGeolocationManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/Authentication/ |
D | AuthenticationManager.h | 32 class ArgumentDecoder; variable 53 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 65 …eAuthenticationManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
D | WebDatabaseManager.h | 35 class ArgumentDecoder; variable 48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); 59 …eiveWebDatabaseManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
|
/external/webkit/Source/WebKit2/Shared/qt/ |
D | WebCoreArgumentCodersQt.cpp | 39 bool decodeResourceRequest(ArgumentDecoder* decoder, WebCore::ResourceRequest& resourceRequest) in decodeResourceRequest() 54 bool decodeResourceResponse(ArgumentDecoder* decoder, WebCore::ResourceResponse& resourceResponse) in decodeResourceResponse() 68 bool decodeResourceError(ArgumentDecoder* decoder, WebCore::ResourceError& resourceError) in decodeResourceError()
|