Home
last modified time | relevance | path

Searched refs:syncRequestID (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DConnection.h146 …ArgumentEncoder> createSyncMessageArgumentEncoder(uint64_t destinationID, uint64_t& syncRequestID);
200 …PassOwnPtr<ArgumentDecoder> sendSyncMessage(MessageID, uint64_t syncRequestID, PassOwnPtr<Argument…
201 PassOwnPtr<ArgumentDecoder> waitForSyncReply(uint64_t syncRequestID, double timeout);
258 uint64_t syncRequestID; member
268 : syncRequestID(0) in PendingSyncReply()
274 explicit PendingSyncReply(uint64_t syncRequestID) in PendingSyncReply()
275 : syncRequestID(syncRequestID) in PendingSyncReply()
345 uint64_t syncRequestID = 0; in sendSync() local
346 …<ArgumentEncoder> argumentEncoder = createSyncMessageArgumentEncoder(destinationID, syncRequestID); in sendSync()
352 …OwnPtr<ArgumentDecoder> replyDecoder = sendSyncMessage(MessageID(T::messageID), syncRequestID, arg… in sendSync()
[all …]
DConnection.cpp273 …oder> Connection::createSyncMessageArgumentEncoder(uint64_t destinationID, uint64_t& syncRequestID) in createSyncMessageArgumentEncoder() argument
278 syncRequestID = ++m_syncRequestID; in createSyncMessageArgumentEncoder()
279 argumentEncoder->encode(syncRequestID); in createSyncMessageArgumentEncoder()
364 PassOwnPtr<ArgumentDecoder> Connection::sendSyncMessage(MessageID messageID, uint64_t syncRequestID in sendSyncMessage() argument
382 m_pendingSyncReplies.append(PendingSyncReply(syncRequestID)); in sendSyncMessage()
391 OwnPtr<ArgumentDecoder> reply = waitForSyncReply(syncRequestID, timeout); in sendSyncMessage()
396 ASSERT(m_pendingSyncReplies.last().syncRequestID == syncRequestID); in sendSyncMessage()
406 PassOwnPtr<ArgumentDecoder> Connection::waitForSyncReply(uint64_t syncRequestID, double timeout) in waitForSyncReply() argument
429 ASSERT(pendingSyncReply.syncRequestID == syncRequestID); in waitForSyncReply()
461 if (pendingSyncReply.syncRequestID != arguments->destinationID()) in processIncomingSyncReply()
[all …]