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

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/glx/apple/
apple_glx_log.c 75 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/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 53 String msg = super.getMessage(); local
54 if (msg != null)
55 return msg;
56 msg = getProblem();
57 if (msg != null)
58 return msg;
61 msg = response.toString();
62 int eol = msg.indexOf("\n");
64 eol = msg.indexOf("\r");
67 msg = msg.substring(0, eol)
    [all...]
  /external/openssh/
monitor_fdpass.c 50 struct msghdr msg; local
63 memset(&msg, 0, sizeof(msg));
65 msg.msg_accrights = (caddr_t)&fd;
66 msg.msg_accrightslen = sizeof(fd);
68 msg.msg_control = (caddr_t)&cmsgbuf.buf;
69 msg.msg_controllen = sizeof(cmsgbuf.buf);
70 cmsg = CMSG_FIRSTHDR(&msg);
79 msg.msg_iov = &vec;
80 msg.msg_iovlen = 1
111 struct msghdr msg; local
    [all...]
  /external/openssl/apps/
winrand.c 74 MSG msg; local
107 while (GetMessage(&msg, NULL, 0, 0))
109 TranslateMessage(&msg);
110 DispatchMessage(&msg);
113 return msg.wParam;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
MessengerTest.java 26 Message msg = Message.obtain(null, 123); local
27 messenger.send(msg);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 67 void EventListModel::addEvent(QString time, QString msg)
71 msgList << msg; local
111 void EventHistory::addEvent(WpaMsg msg)
119 elm->addEvent(msg.getTimestamp().toString("yyyy-MM-dd hh:mm:ss.zzz"),
120 msg.getMsg());
  /frameworks/av/media/libmedia/
IMediaPlayerClient.cpp 38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj)
42 data.writeInt32(msg);
62 int msg = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
SoundPoolThread.cpp 25 void SoundPoolThread::write(SoundPoolMsg msg) {
33 mMsgQueue.push(msg);
43 SoundPoolMsg msg = mMsgQueue[0]; local
46 return msg;
84 SoundPoolMsg msg = read(); local
85 ALOGV("Got message m=%d, mData=%d", msg.mMessageType, msg.mData);
86 switch (msg.mMessageType) {
91 doLoadSample(msg.mData);
95 msg.mMessageType)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
AMPEG2TSAssembler.cpp 96 sp<AMessage> msg = mNotifyMsg->dup(); local
97 msg->setBuffer("access-unit", buffer);
98 msg->post();
112 sp<AMessage> msg = mNotifyMsg->dup(); local
113 msg->setInt32("eos", true);
114 msg->post();
  /frameworks/base/core/java/android/os/
Registrant.java 78 Message msg = Message.obtain(); local
80 msg.what = what;
82 msg.obj = new AsyncResult(userObj, result, exception);
84 h.sendMessage(msg);
102 Message msg = h.obtainMessage(); local
104 msg.what = what;
105 msg.obj = userObj;
107 return msg;
  /frameworks/base/core/java/android/util/
LocalLog.java 42 public synchronized void log(String msg) {
45 mLog.add(mNow.format("%H:%M:%S") + " - " + msg); local
  /frameworks/base/core/tests/coretests/src/android/view/
ViewGroupAttributesTest.java 69 final String msg = "setDescendantFocusability messed with an unrelated flag"; local
70 assertEquals(msg, isAnimationCachEnabled, mViewGroup.isAnimationCacheEnabled());
71 assertEquals(msg, isAlwaysDrawnWithCacheEnabled, mViewGroup.isAlwaysDrawnWithCacheEnabled());
72 assertEquals(msg, isChildrenDrawnWithCacheEnabled, mViewGroup.isChildrenDrawnWithCacheEnabled());
  /frameworks/base/drm/java/android/drm/
DrmErrorEvent.java 105 final String msg = "Unsupported type: " + type; local
106 throw new IllegalArgumentException(msg);
DrmInfoEvent.java 104 final String msg = "Unsupported type: " + type; local
105 throw new IllegalArgumentException(msg);
  /frameworks/native/cmds/servicemanager/
bctest.c 14 struct binder_io msg, reply; local
16 bio_init(&msg, iodata, sizeof(iodata), 4);
17 bio_put_uint32(&msg, 0); // strict mode header
18 bio_put_string16_x(&msg, SVC_MGR_NAME);
19 bio_put_string16_x(&msg, name);
21 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
29 binder_done(bs, &msg, &reply);
38 struct binder_io msg, reply; local
40 bio_init(&msg, iodata, sizeof(iodata), 4);
41 bio_put_uint32(&msg, 0); // strict mode heade
    [all...]
  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 120 InputMessage msg; local
121 EXPECT_EQ(WOULD_BLOCK, clientChannel->receiveMessage(&msg))
136 InputMessage msg; local
137 EXPECT_EQ(DEAD_OBJECT, clientChannel->receiveMessage(&msg))
152 InputMessage msg; local
153 msg.header.type = InputMessage::TYPE_KEY;
154 EXPECT_EQ(DEAD_OBJECT, clientChannel->sendMessage(&msg))
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_nl80211.c 45 static int dhd_nl_finish_handler(struct nl_msg *msg, void *arg)
52 static int dhd_nl_ack_handler(struct nl_msg *msg, void *arg)
59 static int dhd_nl_valid_handler(struct nl_msg *msg, void *arg)
103 struct nl_msg *msg; local
106 msg = nlmsg_alloc();
107 if (msg == NULL)
111 genlmsg_put(msg, 0, 0, dhd_nli->nl_id, 0, 0,
113 NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dhd_nli->ifidx);
114 NLA_PUT(msg, NL80211_ATTR_TESTDATA, sizeof(*ioc), ioc);
116 err = nl_send_auto_complete(dhd_nli->nl, msg);
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
NetlinkConnection.cpp 238 struct msghdr msg; local
263 msg.msg_name = (void *)&dest_addr;
264 msg.msg_namelen = sizeof(dest_addr);
265 msg.msg_iov = &iov;
266 msg.msg_iovlen = 1;
267 msg.msg_control = NULL;
268 msg.msg_controllen = 0;
270 ret = sendmsg(socketDescriptor, &msg, 0);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 55 * Assertion: constructs BadPaddingException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs BadPaddingException when <code>msg</code> is null
73 String msg = null; local
74 BadPaddingException tE = new BadPaddingException(msg);
IllegalBlockSizeExceptionTest.java 56 * Assertion: constructs IllegalBlockSizeException with detail message msg.
57 * Parameter <code>msg</code> is not null.
71 * Assertion: constructs IllegalBlockSizeException when <code>msg</code>
75 String msg = null; local
76 IllegalBlockSizeException tE = new IllegalBlockSizeException(msg);
NoSuchPaddingExceptionTest.java 56 * Assertion: constructs NoSuchPaddingException with detail message msg.
57 * Parameter <code>msg</code> is not null.
71 * Assertion: constructs NoSuchPaddingException when <code>msg</code> is
75 String msg = null; local
76 NoSuchPaddingException tE = new NoSuchPaddingException(msg);
ShortBufferExceptionTest.java 54 * Assertion: constructs ShortBufferException with detail message msg.
55 * Parameter <code>msg</code> is not null.
69 * Assertion: constructs ShortBufferException when <code>msg</code> is
73 String msg = null; local
74 ShortBufferException tE = new ShortBufferException(msg);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
InvalidParameterExceptionTest.java 55 * Assertion: constructs InvalidParameterException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs InvalidParameterException when <code>msg</code>
74 String msg = null; local
75 InvalidParameterException tE = new InvalidParameterException(msg);
NoSuchProviderExceptionTest.java 55 * Assertion: constructs NoSuchProviderException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs NoSuchProviderException when <code>msg</code> is
74 String msg = null; local
75 NoSuchProviderException tE = new NoSuchProviderException(msg);
UnrecoverableKeyExceptionTest.java 55 * Assertion: constructs UnrecoverableKeyException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs UnrecoverableKeyException when <code>msg</code>
74 String msg = null; local
75 UnrecoverableKeyException tE = new UnrecoverableKeyException(msg);

Completed in 1087 milliseconds

1 2 3 4 5 67 8 91011>>