Searched defs:sendSync (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DMessageSender.h57 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, double timeout = Connection::NoTimeout) function in class:CoreIPC::MessageSender
59 return sendSync(message, reply, static_cast<T*>(this)->destinationID(), timeout);
62 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = Connection::NoTimeout) function in class:CoreIPC::MessageSender
67 return connection->sendSync(message, reply, destinationID, timeout);
H A DConnection.h143 template<typename T> bool sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout = DefaultTimeout);
150 // FIXME: These variants of send, sendSync and waitFor are all deprecated.
343 template<typename T> bool Connection::sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout) function in class:CoreIPC::Connection
/external/webkit/Source/WebKit2/UIProcess/
H A DWebProcessProxy.h66 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = 1);
188 bool WebProcessProxy::sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout) function in class:WebKit::WebProcessProxy
190 return m_connection->sendSync(message, reply, destinationID, timeout);

Completed in 1911 milliseconds