HomeSort by relevance Sort by last modified time
    Searched defs:Send (Results 26 - 50 of 53) sorted by null

12 3

  /external/chromium/net/websockets/
websocket.cc 67 void WebSocket::Send(const std::string& msg) {
72 // We must not send any data after we start the WebSocket closing handshake.
429 // 2.,3. Send a 0xFF and 0x00 byte to the server.
  /external/chromium/testing/gmock/scripts/
upload.py 132 host: The host to send requests to.
136 host_override: The host header to send to the server (defaults to host).
291 def Send(self, request_path, payload=None,
298 request_path: The path to send the request to, eg /api/appversion/create.
299 payload: The body of the request, or None to send an empty request.
455 help="Send notification email to reviewers.")
693 response_body = rpc_server.Send(url, body,
    [all...]
  /external/chromium/testing/gtest/scripts/
upload.py 132 host: The host to send requests to.
136 host_override: The host header to send to the server (defaults to host).
291 def Send(self, request_path, payload=None,
298 request_path: The path to send the request to, eg /api/appversion/create.
299 payload: The body of the request, or None to send an empty request.
455 help="Send notification email to reviewers.")
693 response_body = rpc_server.Send(url, body,
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketadapters.cc 68 int BufferedReadAdapter::Send(const void *pv, size_t cb) {
74 return AsyncSocketAdapter::Send(pv, cb);
238 // Clients should not send more data until the handshake is completed.
241 // Send a server hello back to the client.
860 int LoggingSocketAdapter::Send(const void *pv, size_t cb) {
861 int res = AsyncSocketAdapter::Send(pv, cb);
thread.cc 371 void Thread::Send(MessageHandler *phandler, uint32 id, MessageData *pdata) {
416 // MessageQueue, that weren't relevant to this Send. Losing these WakeUps can
420 // Win32SocketServer on thread A calls Send on thread B. While processing the
422 // Post while waiting for the Send to complete, which means that when we exit
439 // only via Join, so Send must complete.
461 // Object target cleared: remove from send list, wakeup/set ready
openssladapter.cc 117 int result = socket->Send(in, inl);
408 OpenSSLAdapter::Send(const void* pv, size_t cb) {
409 //LOG(LS_INFO) << "OpenSSLAdapter::Send(" << cb << ")";
413 return AsyncSocketAdapter::Send(pv, cb);
schanneladapter.cc 293 // Send data to server and wait for response.
452 int sent = AsyncSocketAdapter::Send(&outbuf[pos], outbuf.size() - pos);
476 SChannelAdapter::Send(const void* pv, size_t cb) {
479 return AsyncSocketAdapter::Send(pv, cb);
physicalsocketserver.cc 271 int Send(const void *pv, size_t cb) {
272 int sent = ::send(s_, reinterpret_cast<const char *>(pv), (int)cb,
274 // Suppress SIGPIPE. Without this, attempting to send on a socket whose
    [all...]
win32socketserver.cc 416 int Win32Socket::Send(const void *pv, size_t cb) {
417 int sent = ::send(socket_, reinterpret_cast<const char*>(pv), cb, 0);
562 // If we see that the buffer is indeed drained, then send the close.
614 // and it certainly doesn't send back any close notification, but
744 // Sit and wait forever for a WakeUp. This is the Thread::Send case.
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
upload.py 132 host: The host to send requests to.
136 host_override: The host header to send to the server (defaults to host).
291 def Send(self, request_path, payload=None,
298 request_path: The path to send the request to, eg /api/appversion/create.
299 payload: The body of the request, or None to send an empty request.
455 help="Send notification email to reviewers.")
693 response_body = rpc_server.Send(url, body,
    [all...]
  /bionic/libc/bionic/
libc_logging.cpp 69 void Send(const char* data, int len) {
103 void Send(const char* data, int len) {
222 o.Send(pad, avail);
246 /* then send them to the output directly */
256 o.Send(format+nn, mm-nn);
272 o.Send(&c, 1);
396 o.Send(str, slen);
  /external/chromium/net/server/
http_server.cc 95 connection->socket_->Send(base::StringPrintf(
104 connection->socket_->Send(reinterpret_cast<char*>(digest.a), 16);
116 connection->socket_->Send(&message_start, 1);
117 connection->socket_->Send(data);
118 connection->socket_->Send(&message_end, 1);
121 void HttpServer::Send(int connection_id, const std::string& data) {
126 connection->socket_->Send(data);
129 void HttpServer::Send(int connection_id, const char* bytes, int len) {
134 connection->socket_->Send(bytes, len);
144 connection->socket_->Send(base::StringPrintf
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayserver.cc 52 void Send(talk_base::AsyncPacketSocket* socket, const char* bytes, size_t size,
69 Send(socket, buf.Data(), buf.Length(), addr);
234 ext_conn->Send(bytes, size);
261 int_conn->Send(bytes, size, ext_conn->addr_pair().source());
305 // Send this message on the appropriate internal connection.
309 int_conn->Send(bytes, size, ext_conn->addr_pair().source());
420 // Send this request to the appropriate handler.
467 // Send a response to the caller.
506 ext_conn->Send(data_attr->bytes(), data_attr->length());
605 void RelayServerConnection::Send(const char* data, size_t size)
    [all...]
port.cc 205 // send back a proper binding response.
279 // Do not send error response to a response
288 // Do not send error response to a response
353 // Send the response message.
358 LOG_J(LS_ERROR, this) << "Failed to send STUN ping response to "
400 // Send the response message.
517 // Wire up to send stun packets
564 LOG_J(LS_WARNING, this) << "Failed to send STUN ping " << req->id();
578 // Send it on!
734 requests_.Send(req)
    [all...]
pseudotcp.cc 342 // Check if it's time to send delayed acks
430 int PseudoTcp::Send(const char* buffer, size_t len) {
599 // If this is the wrong conversation, send a reset!?! (with the correct conversation?)
613 // !?! send reset?
748 // If we make room in the send queue, notify the user
1024 // data ready to send then hold off until we get more to send, or the
  /external/v8/src/
platform-posix.cc 386 int Send(const char* data, int len) const;
475 int POSIXSocket::Send(const char* data, int len) const {
476 int status = send(socket_, data, len, 0);
platform-win32.cc     [all...]
  /external/chromium/chrome/browser/automation/
automation_provider.cc 202 Send(new AutomationMsg_InitialLoadsComplete());
208 Send(new AutomationMsg_InitialLoadsComplete());
301 // Send a hello message with our current automation protocol version.
302 channel_->Send(new AutomationMsg_Hello(GetProtocolVersion()));
304 Send(new AutomationMsg_InitialLoadsComplete());
382 // in a way it can't ignore, and make any further attempts to send
441 bool AutomationProvider::Send(IPC::Message* msg) {
443 return channel_->Send(msg);
462 Send(reply_message);
781 Send(reply_message)
    [all...]
  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 538 virtual bool Send(IPC::Message* msg) {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc 122 FlushRtcpMessages(); // Send any outstanding RTCP packets.
125 // the media channel may try to send on the dead transport channel. NULLing
136 Send(enable ? MSG_ENABLE : MSG_DISABLE);
142 Send(mute ? MSG_MUTE : MSG_UNMUTE);
148 Send(MSG_REMOVESTREAM, &data);
154 Send(MSG_SETRTCPCNAME, &data);
161 Send(MSG_SETLOCALCONTENT, &data);
168 Send(MSG_SETREMOTECONTENT, &data);
174 Send(MSG_SETMAXSENDBANDWIDTH, &data);
253 // synchronize access to all the pieces of the send path, includin
749 bool send = enabled() && has_codec() && writable(); local
756 LOG(LS_INFO) << "Changing voice state, recv=" << recv << " send=" << send; local
1007 bool send = enabled() && has_codec() && writable(); local
1013 LOG(LS_INFO) << "Changing video state, recv=" << recv << " send=" << send; local
    [all...]
channelmanager.cc 296 return (Send(MSG_CREATEVOICECHANNEL, &params)) ? params.voice_channel : NULL;
319 Send(MSG_DESTROYVOICECHANNEL, &data);
341 return (Send(MSG_CREATEVIDEOCHANNEL, &params)) ? params.video_channel : NULL;
368 Send(MSG_DESTROYVIDEOCHANNEL, &data);
388 Send(MSG_CREATESOUNDCLIP, &data);
411 Send(MSG_DESTROYSOUNDCLIP, &data);
451 ret = (Send(MSG_SETAUDIOOPTIONS, &options) && options.result);
482 return (Send(MSG_SETOUTPUTVOLUME, &volume) && volume.result);
507 ret = (Send(MSG_SETVIDEOOPTIONS, &options) && options.result);
529 ret = Send(MSG_SETDEFAULTVIDEOENCODERCONFIG, &config) && config.result
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.cc 643 // Send the invalid rect in screen coordinates.
741 Send(new ViewMsg_SetBackground(render_widget_host_->routing_id(),
802 // Send a windows message so that any derived classes
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py     [all...]
  /external/chromium/testing/gtest/src/
gtest.cc     [all...]
  /external/gtest/src/
gtest.cc     [all...]

Completed in 485 milliseconds

12 3