Searched defs:receive (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/chrome/third_party/mock4js/examples/
H A DPublisher.js8 receive: function(message) {
23 subscriber.receive(message);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DIncomingStreamHandler.java24 @Override public void receive(SpdyStream stream) throws IOException {
35 void receive(SpdyStream stream) throws IOException; method in interface:IncomingStreamHandler
H A DPing.java37 void receive() { method in class:Ping
H A DSpdyStream.java307 this.source.receive(in, length);
336 * class uses synchronization to safely receive incoming data frames, it is
340 /** Buffer to receive data from the network into. Only accessed by the reader thread. */
354 * receive no more bytes beyond those already in the buffer.
425 void receive(BufferedSource in, long byteCount) throws IOException { method in class:SpdyStream.SpdyDataSource
449 // Fill the receive buffer without holding any locks.
528 SpdyStream.this.wait(); // Wait until we receive a WINDOW_UPDATE.
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dmsgutil.py52 # An API for handler to send/receive WebSocket messages.
105 This class provides three ways to receive messages: blocking,
120 another thread. In that case, MessageReceiver.receive
144 def receive(self): member in class:MessageReceiver
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dmsgutil.py52 # An API for handler to send/receive WebSocket messages.
105 This class provides three ways to receive messages: blocking,
120 another thread. In that case, MessageReceiver.receive
144 def receive(self): member in class:MessageReceiver
/external/chromium_org/third_party/skia/src/core/
H A DSkMessageBus.h35 void receive(const Message& m); // SkMessageBus is a friend only to call this.
81 void SkMessageBus<Message>::Inbox::receive(const Message& m) { function in class:SkMessageBus::Inbox
109 bus->fInboxes[i]->receive(m);
/external/skia/src/core/
H A DSkMessageBus.h35 void receive(const Message& m); // SkMessageBus is a friend only to call this.
81 void SkMessageBus<Message>::Inbox::receive(const Message& m) { function in class:SkMessageBus::Inbox
109 bus->fInboxes[i]->receive(m);
/external/chromium_org/crypto/
H A Dscoped_capi_types.h67 CAPIHandle* receive() { function in class:crypto::ScopedCAPIHandle
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyServer.java83 @Override public void receive(final SpdyStream stream) throws IOException { method in class:SpdyServer
/external/arduino/libraries/Wire/
H A DWire.cpp191 uint8_t TwoWire::receive(void) function in class:TwoWire
/external/chromium_org/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/
H A DDataChannelMock.java66 public ByteBuffer receive() { method in class:DataChannelMock
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdataengine.h115 virtual bool SetReceive(bool receive) { argument
116 receiving_ = receive;
/external/deqp/framework/delibs/decpp/
H A DdeSocket.hpp99 deSocketResult receive (void* buf, int bufSize, int* numRecv) { return deSocket_receive(m_socket, buf, bufSize, numRecv); } function in class:de::Socket
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java159 receive((HttpResponse) message);
162 receive((HttpContent) message);
173 void receive(HttpResponse response) { method in class:NettyHttpClient.HttpChannel
177 void receive(HttpContent content) { method in class:NettyHttpClient.HttpChannel
/external/chromium_org/device/serial/
H A Ddata_receiver.cc15 // Represents a receive that is not yet fulfilled.
63 PendingReceive* receive,
124 // user starts a new receive following notification of the error (via
150 // suspended. Thus we shouldn't receive another call to OnError until we
304 PendingReceive* receive,
308 pending_receive_(receive),
302 Buffer( scoped_refptr<DataReceiver> receiver, PendingReceive* receive, const char* buffer, uint32_t buffer_size) argument
/external/chromium_org/net/http/
H A Dhttp_auth_gssapi_posix.h220 gss_ctx_id_t* receive() { return &security_context_; } function in class:net::ScopedSecurityContext
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DHAREntry.js137 return {blocked: -1, dns: -1, connect: -1, send: 0, wait: 0, receive: 0, ssl: -1};
160 var receive = WebInspector.HAREntry._toMilliseconds(this._request.duration) - timing.receiveHeadersEnd; variable
166 return {blocked: blocked, dns: dns, connect: connect, send: send, wait: wait, receive: receive, ssl: ssl};
/external/deqp/execserver/
H A DxsExecutionServer.cpp220 anyIO = receive() || anyIO;
342 bool ExecutionRequestHandler::receive (void) function in class:xs::ExecutionRequestHandler
349 deSocketResult result = m_socket->receive(&m_sendRecvTmpBuf[0], maxLen, &numRecv);
367 throw ConnectionError("receive() failed");
/external/kernel-headers/original/uapi/linux/
H A Datmlec.h89 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ member in struct:atmlec_ioc
/external/libnfc-nxp/src/
H A DphFriNfc_LlcpMac.h158 pphFriNfcLlpcMac_Receive_t receive; member in struct:phFriNfc_LlcpMac_Interface
/external/qemu/include/net/
H A Dnet.h16 NetReceive *receive; member in struct:VLANClientState
58 NetReceive *receive,
142 NetReceive *receive,
/external/chromium_org/ipc/
H A Dipc_message_utils.h76 int64 receive; // Time before it was dispatched (i.e. before calling member in struct:IPC::LogData
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc383 const bool receive = !(call_selection == 2); local
385 if (receive) {
432 printf("%i. Toggle receive-side AGC \n", option_index++);
433 printf("%i. Toggle receive-side NS \n", option_index++);
787 if (receive) {
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DMockWebServer.java625 @Override public void receive(SpdyStream stream) throws IOException { method in class:MockWebServer.SpdySocketHandler

Completed in 847 milliseconds

12