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

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/notifications/
notification_object_proxy.cc 22 Send(new DesktopNotificationMsg_PostDisplay(route_id_, notification_id_));
26 Send(new DesktopNotificationMsg_PostError(
31 Send(new DesktopNotificationMsg_PostClose(
36 Send(new DesktopNotificationMsg_PostClick(route_id_, notification_id_));
45 void NotificationObjectProxy::Send(IPC::Message* message) {
54 host->Send(message);
notification_object_proxy.h 42 // Called on UI thread to send a message.
43 void Send(IPC::Message* message);
  /external/chromium/third_party/libjingle/source/talk/examples/call/
friendinvitesendtask.h 41 XmppReturnStatus Send(const Jid& user);
mucinvitesendtask.h 42 XmppReturnStatus Send(const Jid& user, const Muc& muc);
presenceouttask.h 42 XmppReturnStatus Send(const Status & s);
mucinvitesendtask.cc 35 MucInviteSendTask::Send(const Jid& user, const Muc& muc) {
  /external/chromium/chrome/browser/debugger/
devtools_remote.h 41 virtual void Send(const DevToolsRemoteMessage& message) = 0;
devtools_protocol_handler.h 59 virtual void Send(const DevToolsRemoteMessage& message);
  /external/chromium/chrome/browser/
utility_process_host.cc 38 Send(new UtilityMsg_UnpackExtension(extension));
46 Send(new UtilityMsg_UnpackWebResource(data));
54 Send(new UtilityMsg_ParseUpdateManifest(xml));
63 Send(new UtilityMsg_DecodeImage(encoded_data));
72 Send(new UtilityMsg_DecodeImageBase64(base64_encoded_data));
82 Send(new UtilityMsg_IDBKeysFromValuesAndKeyPath(
93 Send(new UtilityMsg_InjectIDBKey(key, value, key_path));
100 Send(new UtilityMsg_ParseJSON(json));
107 Send(new UtilityMsg_BatchMode_Started());
114 Send(new UtilityMsg_BatchMode_Finished())
    [all...]
  /external/chromium/webkit/glue/
websocketstreamhandle_bridge.h 32 virtual bool Send(const std::vector<char>& data) = 0;
websocketstreamhandle_impl.cc 37 bool Send(const WebKit::WebData& data);
82 bool WebSocketStreamHandleImpl::Context::Send(const WebKit::WebData& data) {
83 VLOG(1) << "Send data.size=" << data.size();
85 return bridge_->Send(
161 bool WebSocketStreamHandleImpl::send(const WebKit::WebData& data) { function in class:webkit_glue::WebSocketStreamHandleImpl
162 return context_->Send(data);
  /external/v8/src/
debug-agent.cc 113 client->Send(kCreateSessionMessage, StrLength(kCreateSessionMessage));
166 // Send the hello message.
205 // Send the request received to the debugger.
329 // Send the header.
332 ok = conn->Send(buffer, len);
337 ok = conn->Send(buffer, len);
342 ok = conn->Send(buffer, len);
348 ok = conn->Send(buffer, len);
354 ok = conn->Send(buffer, len);
359 ok = conn->Send(buffer, len)
    [all...]
  /external/chromium/base/
sync_socket.h 44 // Note it is not safe to send messages from the same socket handle by
46 // buffer is a pointer to the data to send.
47 // length is the length of the data to send (must be non-zero).
49 size_t Send(const void* buffer, size_t length);
  /external/chromium/chrome/browser/nacl_host/
nacl_broker_host_win.cc 59 return Send(new NaClProcessMsg_LaunchLoaderThroughBroker(loader_channel_id));
69 Send(new NaClProcessMsg_StopBroker());
  /external/chromium/chrome/browser/service/
service_process_control.cc 207 Send(new ServiceMsg_UpdateAvailable);
222 bool ServiceProcessControl::Send(IPC::Message* message) {
226 return channel_->Send(message);
234 Send(new ServiceMsg_UpdateAvailable);
260 return Send(new ServiceMsg_IsCloudPrintProxyEnabled);
264 bool ret = Send(new ServiceMsg_Shutdown());
272 return Send(
277 return Send(new ServiceMsg_EnableRemotingHost());
281 return Send(new ServiceMsg_DisableRemotingHost());
289 Launch(NewRunnableMethod(this, &ServiceProcessControl::Send,
    [all...]
  /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...]
http_server.h 45 void Send(int connection_id, const std::string& data);
46 void Send(int connection_id, const char* bytes, int len);
  /external/chromium/chrome/browser/importer/
profile_import_process_host.cc 57 Send(new ProfileImportProcessMsg_StartImport(
64 Send(new ProfileImportProcessMsg_CancelImport());
71 Send(new ProfileImportProcessMsg_ReportImportItemFinished(item));
  /external/chromium/chrome/browser/extensions/
extension_message_handler.cc 49 Send(new ExtensionMsg_Response(
  /external/chromium/third_party/libjingle/source/talk/base/
asyncpacketsocket.h 51 // Send a packet.
52 virtual int Send(const void *pv, size_t cb) = 0;
asyncudpsocket.h 50 virtual int Send(const void *pv, size_t cb);
schanneladapter.h 46 virtual int Send(const void* pv, size_t cb);
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
sessionmanagertask.h 85 sender->Send(stanza);
  /external/chromium/chrome/browser/automation/
automation_provider_json.cc 47 provider_->Send(message_);
56 provider_->Send(message_);
  /external/chromium/net/base/
listen_socket.h 66 // Send data to the socket.
67 void Send(const char* bytes, int len, bool append_linefeed = false);
68 void Send(const std::string& str, bool append_linefeed = false);

Completed in 532 milliseconds

1 2 3 4 5 6 7 8