HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 76 - 100 of 1968) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/resources/
connection_manager.js 21 var msg = {
26 window.parent.postMessage(msg, chromeos.connectionManager.parent_page_url_);
  /external/chromium_org/chrome/browser/resources/
connection_manager.js 21 var msg = {
26 window.parent.postMessage(msg, chromeos.connectionManager.parent_page_url_);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
CleanupReference.java 71 // Add a new reference to sRefs. |msg.obj| is the CleanupReference to add.
73 // Remove reference from sRefs. |msg.obj| is the CleanupReference to remove.
85 public void handleMessage(Message msg) {
87 CleanupReference ref = (CleanupReference) msg.obj;
88 switch (msg.what) {
96 Log.e(TAG, "Bad message=" + msg.what);
145 Message msg = Message.obtain(LazyHolder.sHandler, what, this); local
146 if (Looper.myLooper() == msg.getTarget().getLooper()) {
147 msg.getTarget().handleMessage(msg);
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/
NestedSystemMessageHandler.java 67 Message msg = null; local
69 msg = (Message) nextMethod.invoke(queue);
81 if (msg != null) {
82 if (msg.what == QUIT_MESSAGE) {
85 Class messageClazz = msg.getClass();
100 target = (Handler) targetFiled.get(msg);
113 target.dispatchMessage(msg);
115 msg.recycle();
  /libcore/luni/src/test/java/tests/api/java/lang/
Process2Test.java 53 StringBuffer msg = new StringBuffer(""); local
58 msg.append((char) c);
60 assertEquals("", msg.toString());
72 StringBuffer msg = new StringBuffer(""); local
77 msg.append((char) c);
80 !"".equals(msg.toString()));
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAuthenticator.java 59 Message msg = Message.obtain(mCallback); local
60 msg.what = BluetoothMapService.MSG_OBEX_AUTH_CHALL;
61 msg.sendToTarget();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 77 Message msg = Message.obtain(mCallback); local
78 msg.what = BluetoothPbapService.MSG_OBEX_AUTH_CHALL;
79 msg.sendToTarget();
  /bionic/libc/private/
libc_logging.h 57 char msg[0]; member in struct:abort_msg_t
60 __LIBC_HIDDEN__ void __libc_set_abort_message(const char* msg);
102 __LIBC_HIDDEN__ __noreturn void __fortify_chk_fail(const char* msg, uint32_t event_tag);
  /cts/tests/jni/
android_net_cts_NetlinkSocket.cpp 49 struct msghdr msg = {&snl, sizeof(snl), &iov, 1, NULL, 0, 0}; local
56 int retval = sendmsg(sock, &msg, 0);
  /cts/tests/tests/security/src/android/security/cts/
SqliteJournalLeakTest.java 90 String msg = " is world readable. Please set its permissions to 600" local
99 assertFalse(name + msg, f.canRead());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageInterstitial.java 57 CharSequence msg = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_MESSAGE); local
59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg);
  /external/android-clat/
getroute.c 27 #include <netlink/msg.h>
35 * msg - netlink message
38 static int get_default_route_cb(struct nl_msg *msg, void *data) {
51 rt_p = (struct rtmsg *)nlmsg_data(nlmsg_hdr(msg));
60 rta_len = RTM_PAYLOAD(nlmsg_hdr(msg));
106 struct rtmsg msg; local
114 memset(&msg,'\0',sizeof(msg));
115 msg.rtm_family = default_route->request_family;
116 msg.rtm_table = RT_TABLE_MAIN
    [all...]
netlink_msg.c 28 #include <netlink/msg.h>
55 struct nl_msg *msg; local
57 msg = nlmsg_alloc();
58 if(!msg) {
62 if ((sizeof(struct nl_msg) + payload_len) > msg->nm_size) {
63 nlmsg_free(msg);
67 msg->nm_nlh->nlmsg_len = NLMSG_LENGTH(payload_len);
68 msg->nm_nlh->nlmsg_flags = flags;
69 msg->nm_nlh->nlmsg_type = type;
71 memcpy(nlmsg_data(msg->nm_nlh), payload_struct, payload_len)
157 struct nl_msg *msg = NULL; local
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/
AuthenticationExceptionTest.java 41 String msg = null; local
44 new AuthenticationException(msg),
46 new AuthenticationException(msg, null),
48 new AuthenticationException(msg, cause),
SaslExceptionTest.java 41 String msg = null; local
44 new SaslException(msg),
46 new SaslException(msg, null),
48 new SaslException(msg, cause),
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 66 * Assertion: constructs BadPaddingException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs BadPaddingException when <code>msg</code> is null
84 String msg = null; local
85 BadPaddingException tE = new BadPaddingException(msg);
IllegalBlockSizeExceptionTest.java 67 * Assertion: constructs IllegalBlockSizeException with detail message msg.
68 * Parameter <code>msg</code> is not null.
82 * Assertion: constructs IllegalBlockSizeException when <code>msg</code>
86 String msg = null; local
87 IllegalBlockSizeException tE = new IllegalBlockSizeException(msg);
NoSuchPaddingExceptionTest.java 67 * Assertion: constructs NoSuchPaddingException with detail message msg.
68 * Parameter <code>msg</code> is not null.
82 * Assertion: constructs NoSuchPaddingException when <code>msg</code> is
86 String msg = null; local
87 NoSuchPaddingException tE = new NoSuchPaddingException(msg);
ShortBufferExceptionTest.java 66 * Assertion: constructs ShortBufferException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs ShortBufferException when <code>msg</code> is
85 String msg = null; local
86 ShortBufferException tE = new ShortBufferException(msg);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
InvalidParameterExceptionTest.java 66 * Assertion: constructs InvalidParameterException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs InvalidParameterException when <code>msg</code>
85 String msg = null; local
86 InvalidParameterException tE = new InvalidParameterException(msg);
NoSuchProviderExceptionTest.java 66 * Assertion: constructs NoSuchProviderException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs NoSuchProviderException when <code>msg</code> is
85 String msg = null; local
86 NoSuchProviderException tE = new NoSuchProviderException(msg);
UnrecoverableKeyExceptionTest.java 66 * Assertion: constructs UnrecoverableKeyException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs UnrecoverableKeyException when <code>msg</code>
85 String msg = null; local
86 UnrecoverableKeyException tE = new UnrecoverableKeyException(msg);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CRLExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CRLException(), new CRLException(msg),
CertPathBuilderExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CertPathBuilderException(), new CertPathBuilderException(msg),
CertStoreExceptionTest.java 43 String msg = null; local
45 return new Object[] { new CertStoreException(), new CertStoreException(msg),

Completed in 366 milliseconds

1 2 34 5 6 7 8 91011>>