Home | History | Annotate | Download | only in CoreIPC

Lines Matching refs:Reply

65     // Whether this message should be dispatched when waiting for a sync reply.
143 template<typename T> bool sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout = DefaultTimeout);
153 template<typename E, typename T, typename U> bool deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout = NoTimeout);
255 // Represents a sync request for which we're waiting on a reply.
260 // The reply decoder, will be null if there was an error processing the sync
264 // Will be set to true once a reply has been received or an error occurred.
283 OwnPtr<ArgumentDecoder> reply = adoptPtr(replyDecoder);
286 return reply.release();
343 template<typename T> bool Connection::sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout)
351 // Now send the message and wait for a reply.
356 // Decode the reply.
357 return replyDecoder->decode(const_cast<typename T::Reply&>(reply));
374 inline bool Connection::deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout)
382 // Now send the message and wait for a reply.
387 // Decode the reply.
388 return replyDecoder->decode(const_cast<U&>(reply));