HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 201 - 225 of 892) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateExceptionTest.java 65 * Assertion: constructs CertificateException with detail message msg.
66 * Parameter <code>msg</code> is not null.
80 * Assertion: constructs CertificateException when <code>msg</code> is
84 String msg = null; local
85 CertificateException tE = new CertificateException(msg);
123 * <code>cause</code> is null <code>msg</code> is null
134 * <code>cause</code> is null <code>msg</code> is not null
149 * <code>cause</code> is not null <code>msg</code> is null
167 * <code>cause</code> is not null <code>msg</code> is not null
CertificateParsingExceptionTest.java 67 * msg. Parameter <code>msg</code> is not null.
81 * Assertion: constructs CertificateParsingException when <code>msg</code>
85 String msg = null; local
86 CertificateParsingException tE = new CertificateParsingException(msg);
124 * <code>cause</code> is null <code>msg</code> is null
136 * <code>cause</code> is null <code>msg</code> is not null
151 * <code>cause</code> is not null <code>msg</code> is null
170 * <code>cause</code> is not null <code>msg</code> is not null
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathValidatorExceptionTest.java 46 String msg = null; local
49 new CertPathValidatorException(msg),
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
InvalidKeySpecExceptionTest.java 65 * Assertion: constructs InvalidKeySpecException with detail message msg.
66 * Parameter <code>msg</code> is not null.
80 * Assertion: constructs InvalidKeySpecException when <code>msg</code> is
84 String msg = null; local
85 InvalidKeySpecException tE = new InvalidKeySpecException(msg);
123 * <code>cause</code> is null <code>msg</code> is null
134 * <code>cause</code> is null <code>msg</code> is not null
149 * <code>cause</code> is not null <code>msg</code> is null
167 * <code>cause</code> is not null <code>msg</code> is not null
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLExceptionTest.java 51 * constructs SSLException with detail message msg. Parameter
52 * <code>msg</code> is not null.
66 * constructs SSLException when <code>msg</code> is null
69 String msg = null; local
70 SSLException tE = new SSLException(msg);
110 * <code>msg</code> is null
121 * <code>msg</code> is not null
136 * <code>msg</code> is null
158 * <code>msg</code> is not null
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 66 String msg = ""; local
69 msg = "func:function element must be top level.";
70 handler.error(msg, new SAXException(msg));
86 msg = "func:function name must have namespace";
87 handler.error(msg, new SAXException(msg));
125 String msg = ""; local
133 msg = "func:result has an illegal following sibling (only xsl:fallback allowed)";
134 handler.error(msg, new SAXException(msg))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerFactory.java 99 String msg = Utils.messages.createMessage( local
102 throw new IllegalArgumentException(msg);
117 String msg = Utils.messages.createMessage( local
120 throw new IllegalArgumentException(msg);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 40 * String msg = x.createMessage(org.package.MyMessages.KEY_ONE, null);
46 * String msg = x.createMessage(org.package.MyMessages.KEY_TWO,
207 String msg = null; local
210 msg = fResourceBundle.getString(msgKey);
214 if (msg == null)
223 msg =
233 msg =
255 fmsg = java.text.MessageFormat.format(msg, args);
268 fmsg += " " + msg;
284 fmsg = msg;
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_sock_util.c 110 struct msghdr msg; local
112 memset(&msg, 0, sizeof(msg));
121 msg.msg_control = msgbuf;
122 msg.msg_controllen = sizeof msgbuf;
123 cmsg = CMSG_FIRSTHDR(&msg);
138 msg.msg_iov = &iv;
139 msg.msg_iovlen = 1;
142 ret = sendmsg(sock_fd, &msg, MSG_NOSIGNAL);
156 memset(&msg, 0, sizeof(msg))
    [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
BuildInfo.java 69 String msg = "versionCode not available."; local
73 msg = "";
75 msg = Integer.toString(pi.versionCode);
78 Log.d(TAG, msg);
80 return msg;
86 String msg = "versionName not available"; local
90 msg = pi.versionName;
92 Log.d(TAG, msg);
94 return msg;
SystemMessageHandler.java 49 public void handleMessage(Message msg) {
50 if (msg.what == DELAYED_SCHEDULED_WORK) {
80 Message msg = Message.obtain(); local
81 msg.what = what;
86 mMessageMethodSetAsynchronous.invoke(msg, true);
101 return msg;
  /external/chromium_org/chrome/renderer/
content_settings_observer_browsertest.cc 128 const IPC::Message* msg = render_thread_->sink().GetMessageAt(i); local
129 if (msg->type() == GetNavigationIPCType())
131 if (msg->type() == ChromeViewHostMsg_ContentBlocked::ID)
283 const IPC::Message* msg = render_thread_->sink().GetMessageAt(i); local
284 if (msg->type() == ChromeViewHostMsg_ContentBlocked::ID)
319 const IPC::Message* msg = render_thread_->sink().GetMessageAt(i); local
320 if (msg->type() == ChromeViewHostMsg_ContentBlocked::ID)
366 const IPC::Message* msg = render_thread_->sink().GetMessageAt(i); local
367 if (msg->type() == ChromeViewHostMsg_ContentBlocked::ID)
  /external/chromium_org/chromecast/media/cma/ipc/
media_message.h 75 const void* msg() const { return msg_read_only_; } function in class:chromecast::media::MediaMessage
143 // - for security purpose: cache the msg header to avoid browser security
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_unittest.cc 143 struct msghdr msg = {}; local
148 msg.msg_iov = &iov;
149 msg.msg_iovlen = 1;
152 HANDLE_EINTR(sendmsg(fds[1].get(), &msg, 0)));
154 HANDLE_EINTR(recvmsg(fds[0].get(), &msg, 0)));
  /external/chromium_org/content/browser/renderer_host/
render_process_host_browsertest.cc 76 ChildProcessHostMsg_ShutdownRequest msg; local
77 rph->OnMessageReceived(msg);
  /external/chromium_org/content/browser/web_contents/aura/
overscroll_navigation_overlay_unittest.cc 48 FrameHostMsg_DidFirstVisuallyNonEmptyPaint msg(
50 RenderViewHostTester::TestOnMessageReceived(test_rvh(), msg); local
  /external/chromium_org/content/common/input/
input_param_traits_unittest.cc 92 IPC::Message msg; local
93 IPC::ParamTraits<InputEvents>::Write(&msg, events_in);
96 PickleIterator iter(msg);
97 EXPECT_TRUE(IPC::ParamTraits<InputEvents>::Read(&msg, &iter, &events_out));
111 IPC::Message msg; local
112 IPC::ParamTraits<SyntheticGesturePacket>::Write(&msg, packet_in);
115 PickleIterator iter(msg);
116 EXPECT_TRUE(IPC::ParamTraits<SyntheticGesturePacket>::Read(&msg, &iter,
135 IPC::Message msg; local
136 IPC::WriteParam(&msg, event)
180 IPC::Message msg; local
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_browsertest.cc 144 const IPC::Message* msg = local
147 if (!msg)
150 PickleIterator iter(*msg);
155 msg, &iter, params)) {
  /external/chromium_org/content/renderer/pepper/
pepper_file_chooser_host_unittest.cc 89 const IPC::Message* msg = render_thread_->sink().GetUniqueMessageMatching( local
91 ASSERT_TRUE(msg);
93 ASSERT_TRUE(ViewHostMsg_RunFileChooser::Read(msg, &call_msg_param));
  /external/chromium_org/ipc/
sync_socket_unittest.cc 61 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE {
62 if (msg.routing_id() == MSG_ROUTING_CONTROL) {
63 IPC_BEGIN_MESSAGE_MAP(SyncSocketServerListener, msg)
91 IPC::Message* msg = new MsgClassResponse(kHelloString); local
92 EXPECT_TRUE(chan_->Send(msg));
132 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE {
133 if (msg.routing_id() == MSG_ROUTING_CONTROL) {
134 IPC_BEGIN_MESSAGE_MAP(SyncSocketClientListener, msg)
154 IPC::Message* msg = new MsgClassShutdown(); local
155 EXPECT_TRUE(chan_->Send(msg));
191 IPC::Message* msg = new MsgClassSetHandle(target_handle); local
196 IPC::Message* msg = new MsgClassSetHandle(filedesc); local
    [all...]
  /external/chromium_org/net/quic/crypto/
quic_crypto_client_config_test.cc 72 CryptoHandshakeMessage msg; local
75 &params, &msg);
78 EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kVER, &cver));
95 CryptoHandshakeMessage msg; local
98 &params, &msg);
101 EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kPDMD, &pdmd));
110 CryptoHandshakeMessage msg; local
113 &params, &msg);
116 EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kPDMD, &pdmd));
157 CryptoHandshakeMessage msg; local
    [all...]
  /external/chromium_org/ppapi/proxy/
file_chooser_resource_unittest.cc 87 IPC::Message msg; local
89 PpapiHostMsg_FileChooser_Show::ID, &params, &msg));
ppb_flash_message_loop_proxy.cc 55 IPC::SyncMessage* msg = new PpapiHostMsg_PPBFlashMessageLoop_Run( local
57 msg->EnableMessagePumping();
58 PluginDispatcher::GetForResource(this)->Send(msg);
98 bool PPB_Flash_MessageLoop_Proxy::OnMessageReceived(const IPC::Message& msg) {
103 IPC_BEGIN_MESSAGE_MAP(PPB_Flash_MessageLoop_Proxy, msg)
resource_message_test_sink.cc 23 const IPC::Message* msg = sink.GetMessageAt(i); local
24 if (msg->type() == WrapperMessage::ID) {
26 WrapperMessage::Read(msg, &params);
45 bool ResourceMessageTestSink::Send(IPC::Message* msg) {
48 if (msg->is_sync()) {
50 static_cast<IPC::SyncMessage*>(msg)->GetReplyDeserializer());
51 message_id = IPC::SyncMessage::GetMessageId(*msg);
53 bool result = IPC::TestSink::Send(msg); // Deletes |msg|.
126 bool ResourceSyncCallHandler::OnMessageReceived(const IPC::Message& msg) {
    [all...]
  /external/chromium_org/third_party/icu/source/extra/uconv/
uwmsg.c 123 const UChar *msg; local
140 msg = ures_getStringByKey(gBundle, tag, &msgLen, &err);
150 memcpy(result, msg, msgLen * U_SIZEOF_UCHAR);
155 uprint(msg,msgLen, fp, &err);
160 resultLength = u_vformatMessage(uloc_getDefault(), msg, msgLen, result, resultLength, ap, &err);
173 uprint(msg,msgLen, fp, &err);
217 UChar *msg; local
223 msg = (UChar*)fetchErrorName(err);
225 if(msg)
227 return msg;
    [all...]

Completed in 4905 milliseconds

1 2 3 4 5 6 7 891011>>