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

12 3 4 5 6 7 8

  /external/chromium/third_party/libjingle/source/talk/base/
asyncsocket.h 74 virtual int Send(const void* pv, size_t cb) {
75 return socket_->Send(pv, cb);
asyncudpsocket.cc 75 int AsyncUDPSocket::Send(const void *pv, size_t cb) {
76 return socket_->Send(pv, cb);
115 // send datagram, indicating the remote address was unreachable.
socketadapters.h 53 virtual int Send(const void* pv, size_t cb);
58 return AsyncSocketAdapter::Send(pv, cb);
239 virtual int Send(const void *pv, size_t cb);
asynctcpsocket.h 37 // Simulates UDP semantics over TCP. Send and Recv packet sizes
38 // are preserved, and drops packets silently on Send, rather than
48 virtual int Send(const void *pv, size_t cb);
httprequest.h 51 void Send();
openssladapter.h 52 virtual int Send(const void* pv, size_t cb);
  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.cc 53 host->Send(msg_.release());
62 virtual bool Send(IPC::Message* msg) {
63 // The GPU process must never send a synchronous IPC message to the browser
155 bool GpuProcessHostUIShim::Send(IPC::Message* msg) {
191 Send(new GpuMsg_DestroyCommandBuffer(renderer_id, render_view_id));
199 ui_shim->Send(msg);
295 Send(new GpuMsg_ResizeViewACK(renderer_id, command_buffer_route_id));
external_tab_container_win.cc 346 automation_->Send(new AutomationMsg_OpenURL(tab_handle_,
380 automation_->Send(new AutomationMsg_NavigationStateChanged(
446 automation_->Send(new AutomationMsg_AttachExternalTab(
483 automation_->Send(unload_reply_message_);
486 automation_->Send(new AutomationMsg_CloseExternalTab(tab_handle_));
493 automation_->Send(new AutomationMsg_MoveWindow(tab_handle_, pos));
504 automation_->Send(
516 automation_->Send(new AutomationMsg_ForwardMessageToExternalHost(
531 automation_->Send(new AutomationMsg_TabbedOut(tab_handle_,
633 automation_->Send(
    [all...]
gpu_process_host_ui_shim.h 72 virtual bool Send(IPC::Message* msg);
spellcheck_message_filter_browsertest.cc 34 virtual bool Send(IPC::Message* message) {
  /external/chromium/chrome/common/extensions/
extension_localization_peer_unittest.cc 42 ON_CALL(*this, Send(_))
48 MOCK_METHOD1(Send, bool(IPC::Message* message));
157 EXPECT_CALL(*sender_, Send(_)).Times(0);
174 EXPECT_CALL(*sender_, Send(_));
189 // Test if Send gets called again (it shouldn't be) when first call returned
210 // We already have messages in memory, Send will be skipped.
211 EXPECT_CALL(*sender_, Send(_)).Times(0);
241 // We already have messages in memory, Send will be skipped.
242 EXPECT_CALL(*sender_, Send(_)).Times(0);
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils_mac.cc 92 sender_->Send(new Msg_Decryptor_Quit());
189 channel_->Send(new Msg_Decryptor_Init(dll_path, db_path));
199 channel_->Send(new Msg_Decrypt(crypt));
223 sender_->Send(new Msg_Decryptor_InitReturnCode(ret));
228 sender_->Send(new Msg_Decryptor_Response(unencrypted_str));
  /external/chromium/chrome/browser/automation/
testing_automation_provider_views.cc 65 automation_->Send(reply_message_);
99 automation_->Send(reply_message_);
191 Send(reply_message);
automation_provider_gtk.cc 44 provider_->Send(reply_message_);
141 Send(reply_message);
automation_resource_tracker.cc 80 sender_->Send(
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket_unittest.cc 255 connection_->Send(kChromeDevToolsHandshake);
275 bool DevToolsRemoteListenSocketTester::Send(SOCKET sock,
278 int send_len = HANDLE_EINTR(send(sock, str.data(), len, 0));
280 LOG(ERROR) << "send failed: " << errno;
289 ASSERT_TRUE(Send(test_socket_, kChromeDevToolsHandshake));
291 ASSERT_TRUE(Send(test_socket_, kSimpleMessagePart1));
294 ASSERT_TRUE(Send(test_socket_, kSimpleMessagePart2));
306 ASSERT_TRUE(Send(test_socket_, kTwoMessages));
devtools_protocol_handler.cc 102 void DevToolsProtocolHandler::Send(const DevToolsRemoteMessage& message) {
104 connection_->Send(message.ToString());
extension_ports_remote_service.h 54 virtual bool Send(IPC::Message* msg);
97 // The delegate is used to send responses and events back to the
  /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...]
soundclip.cc 61 worker_thread_->Send(this, MSG_PLAYSOUND, &data);
  /external/chromium/net/base/
listen_socket_unittest.cc 124 connection_->Send(kHelloWorld);
129 ASSERT_TRUE(Send(test_socket_, kHelloWorld));
143 ASSERT_TRUE(Send(test_socket_, long_string));
177 bool ListenSocketTester::Send(SOCKET sock, const std::string& str) {
179 int send_len = HANDLE_EINTR(send(sock, str.data(), len, 0));
181 LOG(ERROR) << "send failed: " << errno;
  /external/chromium/third_party/libjingle/source/talk/examples/call/
friendinvitesendtask.cc 34 FriendInviteSendTask::Send(const Jid& user) {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunrequest.h 49 void Send(StunRequest* request);
99 // Time elapsed since last send (in ms)
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.cc 160 process_control->Send(new ServiceMsg_EnableCloudPrintProxy(lsid));
169 process_control->Send(new ServiceMsg_DisableCloudPrintProxy);

Completed in 683 milliseconds

12 3 4 5 6 7 8