Searched refs:msg (Results 276 - 300 of 3582) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/ozone/public/
H A Dui_thread_gpu.cc23 virtual bool Send(IPC::Message* msg) OVERRIDE {
24 listener_->OnMessageReceived(*msg);
25 delete msg;
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dstring-contains.js68 msg: "Empty string", val: ""
70 msg: "Number 1234.34", val: 1234.34
72 msg: "Integer number 0", val: 0
74 msg: "Negative number -1", val: -1
76 msg: "Boolean true", val: true
78 msg: "Boolean false", val: false
80 msg: "Empty array []", val: []
82 msg: "Empty object {}", val: {}
84 msg: "Array of size 3", val: new Array(3)
94 assertTrue(s.contains(v), e.msg);
[all...]
/external/deqp/framework/common/
H A DtcuDefs.cpp52 std::ostringstream msg; local
53 msg << (message ? message : "Runtime check failed");
56 msg << ": '" << expr << '\'';
59 msg << " at " << de::FilePath(file).getBaseName() << ":" << line;
61 return msg.str();
/external/libnfc-nxp/Linux_x86/
H A DphDal4Nfc_debug.h20 #define DAL_PRINT_BUFFER(msg,buf,len) \
24 snprintf(trace,MAX_TRACE_BUFFER,"\n\t %s:",msg); \
35 #define DAL_PRINT_BUFFER(msg,buf,len)
/external/libnl/lib/netfilter/
H A Dnfnl.c36 * struct nl_msg *msg;
39 * msg = nlmsg_alloc();
42 * hdr = nfnlmsg_put(msg, PID, SEQ, SUBSYS, TYPE, NLM_F_ECHO,
46 * nla_put_u32(msg, 1, 0x10);
49 * nl_send_auto_complete(sk, msg);
52 * nlmsg_free(msg);
174 static int nfnlmsg_append(struct nl_msg *msg, uint8_t family, uint16_t res_id) argument
178 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO);
185 NL_DBG(2, "msg %p: Added nfnetlink header family=%d res_id=%d\n",
186 msg, famil
203 struct nl_msg *msg; local
230 nfnlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, uint8_t subsys_id, uint8_t type, int flags, uint8_t family, uint16_t res_id) argument
[all...]
H A Dlog_msg.c67 struct nfnl_log_msg *msg; local
72 msg = nfnl_log_msg_alloc();
73 if (!msg)
76 msg->ce_msgtype = nlh->nlmsg_type;
83 nfnl_log_msg_set_family(msg, nfnlmsg_family(nlh));
90 nfnl_log_msg_set_hwproto(msg, hdr->hw_protocol);
91 nfnl_log_msg_set_hook(msg, hdr->hook);
96 nfnl_log_msg_set_mark(msg, ntohl(nla_get_u32(attr)));
105 nfnl_log_msg_set_timestamp(msg, &tv);
110 nfnl_log_msg_set_indev(msg, ntoh
172 struct nfnl_log_msg *msg; local
[all...]
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dmain.js101 isGaiaMessage_: function(msg) {
103 return this.gaiaUrl_.indexOf(msg.origin) == 0 ||
104 this.GAIA_URL.indexOf(msg.origin) == 0;
107 isInternalMessage_: function(msg) {
108 return msg.origin == Authenticator.THIS_EXTENSION_ORIGIN;
111 isParentMessage_: function(msg) {
112 return msg.origin == this.parentPage_;
192 var msg = {
195 window.parent.postMessage(msg, this.parentPage_);
203 switchToFullTab_: function(msg) {
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dmnkytst.cpp49 UnicodeString msg; local
51 msg += s;
52 msg += " and ";
53 msg += t;
54 msg += " round trip comparison failed";
55 msg += (UnicodeString) " (result " + result + ", reverse Result " + revResult + ")";
57 errln(msg);
113 UnicodeString msg; local
122 msg += "CollationKey(";
123 msg
179 UnicodeString msg; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.cpp49 UnicodeString msg; local
51 msg += s;
52 msg += " and ";
53 msg += t;
54 msg += " round trip comparison failed";
55 msg += (UnicodeString) " (result " + result + ", reverse Result " + revResult + ")";
57 errln(msg);
113 UnicodeString msg; local
122 msg += "CollationKey(";
123 msg
179 UnicodeString msg; local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_in_process_router.cc71 bool PepperInProcessRouter::OnPluginMsgReceived(const IPC::Message& msg) { argument
76 if (msg.type() == PpapiPluginMsg_ResourceReply::ID) {
79 msg, &reply_params, &nested_msg)) {
83 } else if (msg.type() == PpapiHostMsg_InProcessResourceReply::ID) {
86 msg, &reply_params, &nested_msg)) {
103 bool PepperInProcessRouter::SendToHost(IPC::Message* msg) { argument
104 scoped_ptr<IPC::Message> message(msg);
140 bool PepperInProcessRouter::SendToPlugin(IPC::Message* msg) { argument
141 scoped_ptr<IPC::Message> message(msg);
142 CHECK(!msg
158 DispatchHostMsg(IPC::Message* msg) argument
163 DispatchPluginMsg(IPC::Message* msg) argument
168 SendToBrowser(IPC::Message* msg) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dturnserver.cc93 void HandleTurnMessage(const TurnMessage* msg);
102 void HandleAllocateRequest(const TurnMessage* msg);
103 void HandleRefreshRequest(const TurnMessage* msg);
104 void HandleSendIndication(const TurnMessage* msg);
105 void HandleCreatePermissionRequest(const TurnMessage* msg);
106 void HandleChannelBindRequest(const TurnMessage* msg);
113 static int ComputeLifetime(const TurnMessage* msg);
120 void SendResponse(TurnMessage* msg);
129 virtual void OnMessage(rtc::Message* msg);
157 virtual void OnMessage(rtc::Message* msg);
307 TurnMessage msg; local
368 GetKey(const StunMessage* msg, std::string* key) argument
379 CheckAuthorization(Connection* conn, const StunMessage* msg, const char* data, size_t size, const std::string& key) argument
453 HandleAllocateRequest(Connection* conn, const TurnMessage* msg, const std::string& key) argument
551 SendErrorResponseWithRealmAndNonce( Connection* conn, const StunMessage* msg, int code, const std::string& reason) argument
563 SendErrorResponseWithAlternateServer( Connection* conn, const StunMessage* msg, const rtc::SocketAddress& addr) argument
574 SendStun(Connection* conn, StunMessage* msg) argument
677 HandleTurnMessage(const TurnMessage* msg) argument
702 HandleAllocateRequest(const TurnMessage* msg) argument
734 HandleRefreshRequest(const TurnMessage* msg) argument
755 HandleSendIndication(const TurnMessage* msg) argument
775 HandleCreatePermissionRequest( const TurnMessage* msg) argument
797 HandleChannelBindRequest(const TurnMessage* msg) argument
876 TurnMessage msg; local
891 ComputeLifetime(const TurnMessage* msg) argument
946 SendResponse(TurnMessage* msg) argument
967 OnMessage(rtc::Message* msg) argument
1001 OnMessage(rtc::Message* msg) argument
1022 OnMessage(rtc::Message* msg) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DErrorManager.cs49 string msg = "Exception " + e + "@" + location + ": " + error;
50 //Error(MSG_INTERNAL_ERROR, msg);
51 Error(msg);
57 string msg = location + ": " + error;
58 //Error(MSG_INTERNAL_ERROR, msg);
59 Error(msg);
/external/bison/build-aux/snippet/
H A Dwarn-on-use.h88 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
90 __attribute__ ((__warning__ (msg)))
93 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
96 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
/external/bison/darwin-lib/
H A Dwarn-on-use.h25 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
27 __attribute__ ((__warning__ (msg)))
30 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
33 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
/external/bison/linux-lib/
H A Dwarn-on-use.h25 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
27 __attribute__ ((__warning__ (msg)))
30 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
33 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
/external/chromium_org/ipc/
H A Dipc_sender.h20 virtual bool Send(Message* msg) = 0;
/external/chromium_org/net/test/
H A Dscoped_disable_exit_on_dfatal.h31 static void LogAssertHandler(const std::string& msg);
/external/chromium_org/ppapi/proxy/
H A Dplugin_resource.cc43 const IPC::Message& msg) {
45 "Class", IPC_MESSAGE_ID_CLASS(msg.type()),
46 "Line", IPC_MESSAGE_ID_LINE(msg.type()));
47 // Grab the callback for the reply sequence number and run it with |msg|.
54 callback->Run(params, msg);
82 void PluginResource::SendCreate(Destination dest, const IPC::Message& msg) { argument
84 "Class", IPC_MESSAGE_ID_CLASS(msg.type()),
85 "Line", IPC_MESSAGE_ID_LINE(msg.type()));
95 new PpapiHostMsg_ResourceCreated(params, pp_instance(), msg));
112 void PluginResource::Post(Destination dest, const IPC::Message& msg) { argument
41 OnReplyReceived( const proxy::ResourceMessageReplyParams& params, const IPC::Message& msg) argument
138 GenericSyncCall( Destination dest, const IPC::Message& msg, IPC::Message* reply, ResourceMessageReplyParams* reply_params) argument
[all...]
H A Dppapi_message_utils.h69 bool UnpackMessage(const IPC::Message& msg, A* a) { argument
74 PickleIterator iter(msg);
75 return IPC::ReadParam(&msg, &iter, a);
79 bool UnpackMessage(const IPC::Message& msg, A* a, B* b) { argument
84 PickleIterator iter(msg);
85 return IPC::ReadParam(&msg, &iter, a) && IPC::ReadParam(&msg, &iter, b);
89 bool UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c) { argument
94 PickleIterator iter(msg);
95 return IPC::ReadParam(&msg,
101 UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c, D* d) argument
114 UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c, D* d, E* e) argument
[all...]
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
/external/chromium_org/remoting/protocol/
H A Dmessage_serialization.h27 const google::protobuf::MessageLite& msg);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Ddie.h35 static void SandboxDie(const char* msg, const char* file, int line)
38 static void RawSandboxDie(const char* msg) __attribute__((noreturn));
42 static void SandboxInfo(const char* msg, const char* file, int line);
46 static void LogToStderr(const char* msg, const char* file, int line);
/external/chromium_org/sync/engine/
H A Dtraffic_logger.h19 void LogClientToServerMessage(const sync_pb::ClientToServerMessage& msg);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dstack_utils_unittest.py54 def logger(msg):
55 msgs.append(msg)
65 def logger(msg):
66 msgs.append(msg)
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcintltst.h117 U_CFUNC UBool assertSuccess(const char* msg, UErrorCode* ec);
123 U_CFUNC UBool assertSuccessCheck(const char* msg, UErrorCode* ec, UBool possibleDataError);
132 U_CFUNC UBool assertTrue(const char* msg, int condition);
138 U_CFUNC UBool assertEquals(const char* msg, const char* expectedString,

Completed in 2897 milliseconds

<<11121314151617181920>>