Searched defs:msg (Results 226 - 250 of 1844) sorted by relevance

1234567891011>>

/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.cc76 CryptoHandshakeMessage msg; local
77 session()->config()->ToHandshakeMessage(&msg);
80 session()->config()->ProcessClientHello(msg, &error_details);
/external/chromium_org/ppapi/host/
H A Dresource_host.cc28 bool ResourceHost::HandleMessage(const IPC::Message& msg, argument
32 if (message_filters_[i]->HandleMessage(msg, context))
36 RunMessageHandlerAndReply(msg, context);
47 const IPC::Message& msg) {
48 host_->SendReply(context, msg);
46 SendReply(const ReplyMessageContext& context, const IPC::Message& msg) argument
H A Dresource_message_filter.cc62 bool ResourceMessageFilter::HandleMessage(const IPC::Message& msg, argument
64 scoped_refptr<base::TaskRunner> runner = OverrideTaskRunnerForMessage(msg);
67 DispatchMessage(msg, *context);
74 &ResourceMessageFilter::DispatchMessage, this, msg, context_copy));
83 const IPC::Message& msg) {
86 base::Bind(&ResourceMessageFilter::SendReply, this, context, msg));
90 resource_host_->SendReply(context, msg);
94 ResourceMessageFilter::OverrideTaskRunnerForMessage(const IPC::Message& msg) { argument
98 void ResourceMessageFilter::DispatchMessage(const IPC::Message& msg, argument
100 RunMessageHandlerAndReply(msg,
82 SendReply(const ReplyMessageContext& context, const IPC::Message& msg) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Ddispatch_reply_message.h93 const IPC::Message& msg) {
99 DCHECK(msg.type() == MsgClass::ID || msg.type() == 0)
101 if (msg.type() == MsgClass::ID && MsgClass::Read(&msg, &msg_params)) {
119 // |ResourceMessageReplyParams|. In this case |msg| shouldn't contain any
126 const IPC::Message& msg) {
127 DCHECK(msg.type() == MsgClass::ID || msg.type() == 0)
89 DispatchResourceReplyOrDefaultParams( ObjT* obj, Method method, const ResourceMessageReplyParams& reply_params, const IPC::Message& msg) argument
122 DispatchResourceReplyOrDefaultParams( base::Callback<void(const ResourceMessageReplyParams&)>* obj, Method method, const ResourceMessageReplyParams& reply_params, const IPC::Message& msg) argument
H A Ddispatcher.cc62 bool Dispatcher::OnMessageReceived(const IPC::Message& msg) { argument
63 if (msg.routing_id() <= 0 || msg.routing_id() >= API_ID_COUNT) {
69 static_cast<ApiID>(msg.routing_id()));
74 return proxy->OnMessageReceived(msg);
H A Dflash_menu_resource.cc71 const IPC::Message& msg) {
74 switch (msg.type()) {
78 msg, &selected_id))
69 OnReplyReceived( const proxy::ResourceMessageReplyParams& params, const IPC::Message& msg) argument
H A Dnetwork_monitor_resource.cc33 const IPC::Message& msg) {
34 IPC_BEGIN_MESSAGE_MAP(NetworkMonitorResource, msg)
40 PluginResource::OnReplyReceived(params, msg))
31 OnReplyReceived( const ResourceMessageReplyParams& params, const IPC::Message& msg) argument
H A Dppb_x509_certificate_private_proxy.cc26 void SendToBrowser(IPC::Message* msg);
46 void X509CertificatePrivate::SendToBrowser(IPC::Message* msg) { argument
47 PluginGlobals::Get()->GetBrowserSender()->Send(msg);
69 const IPC::Message& msg) {
68 OnMessageReceived( const IPC::Message& msg) argument
H A Dppp_input_event_proxy.cc87 bool PPP_InputEvent_Proxy::OnMessageReceived(const IPC::Message& msg) { argument
92 IPC_BEGIN_MESSAGE_MAP(PPP_InputEvent_Proxy, msg)
H A Dprinting_resource_unittest.cc61 IPC::Message msg; local
63 PpapiHostMsg_Printing_GetDefaultPrintSettings::ID, &params, &msg));
H A Dproxy_channel.cc80 bool ProxyChannel::Send(IPC::Message* msg) { argument
82 return test_sink_->Send(msg);
84 return channel_->Send(msg);
87 delete msg;
/external/chromium_org/ppapi/shared_impl/
H A Dresource.cc73 const IPC::Message& msg) {
72 OnReplyReceived(const proxy::ResourceMessageReplyParams& params, const IPC::Message& msg) argument
/external/chromium_org/remoting/host/
H A Dcontinue_window_win.cc33 static BOOL CALLBACK DialogProc(HWND hwmd, UINT msg, WPARAM wParam,
36 BOOL OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
74 BOOL CALLBACK ContinueWindowWin::DialogProc(HWND hwnd, UINT msg, argument
77 if (msg == WM_INITDIALOG) {
87 return win->OnDialogMessage(hwnd, msg, wParam, lParam);
90 BOOL ContinueWindowWin::OnDialogMessage(HWND hwnd, UINT msg, argument
94 switch (msg) {
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-message.h96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT argument
97 *ss_ << msg.GetString();
/external/chromium_org/third_party/angle/samples/gles2_book/Common/Win32/
H A DesUtil_win32.c160 MSG msg = { 0 }; local
166 int gotMsg = (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) != 0);
173 if (msg.message==WM_QUIT)
179 TranslateMessage(&msg);
180 DispatchMessage(&msg);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsignalthread.cc120 void SignalThread::OnMessage(Message *msg) { argument
122 if (ST_MSG_WORKER_DONE == msg->message_id) {
H A Dunittest_main.cc38 int TestCrtReportHandler(int report_type, char* msg, int* retval) { argument
40 LOG(LS_ERROR) << msg;
H A Dwin32window_unittest.cc38 const MSG& msg() const { return msg_; } function in class:TestWindow
65 EXPECT_EQ(WM_USER, wnd.msg().message);
66 EXPECT_EQ(1, wnd.msg().wParam);
67 EXPECT_EQ(2, wnd.msg().lParam);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunserver_unittest.cc58 void Send(const StunMessage& msg) { argument
60 msg.Write(&buf);
67 StunMessage* msg = NULL; local
71 msg = new StunMessage();
72 msg->Read(&buf);
75 return msg;
96 StunMessage* msg = Receive(); local
97 ASSERT_TRUE(msg != NULL);
98 EXPECT_EQ(STUN_BINDING_RESPONSE, msg->type());
99 EXPECT_EQ(req.transaction_id(), msg
124 StunMessage* msg = Receive(); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dtypingmonitor.cc105 void TypingMonitor::OnMessage(talk_base::Message* msg) { argument
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degllog.c128 _eglDefaultLogger(EGLint level, const char *msg) argument
130 fprintf(stderr, "libEGL %s: %s\n", level_strings[level], msg);
182 char msg[MAXSTRING]; local
195 ret = vsnprintf(msg, MAXSTRING, fmtStr, args);
197 strcpy(msg, "<message truncated>");
200 logging.logger(level, msg);
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_log.c75 aslmsg msg; local
101 msg = asl_new(ASL_TYPE_MSG);
102 if (msg) {
104 asl_set(msg, "File", file);
106 asl_set(msg, "Function", function);
111 asl_set(msg, "Line", _line);
119 asl_set(msg, "Thread", _thread);
125 asl_vlog(aslc, msg, level, fmt, args);
126 if (msg)
127 asl_free(msg);
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-message.h101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT argument
102 *ss_ << msg.GetString();
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_fiter.cpp124 BOOL CALLBACK FilterPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
126 switch(msg)
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dwinrand.c74 MSG msg; local
107 while (GetMessage(&msg, NULL, 0, 0))
109 TranslateMessage(&msg);
110 DispatchMessage(&msg);
113 return msg.wParam;

Completed in 2809 milliseconds

1234567891011>>