Searched defs:msg (Results 251 - 275 of 307) sorted by relevance

<<111213

/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java1348 private void replyToMessage(Message msg, int what) { argument
1349 if (msg.replyTo == null) return;
1350 Message dstMsg = obtainMessage(msg);
1352 mReplyChannel.replyToMessage(msg, dstMsg);
1355 private void replyToMessage(Message msg, int what, int arg1) { argument
1356 if (msg.replyTo == null) return;
1357 Message dstMsg = obtainMessage(msg);
1360 mReplyChannel.replyToMessage(msg, dstMsg);
1363 private void replyToMessage(Message msg, int what, Object obj) { argument
1364 if (msg
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java483 public void handleMessage(Message msg) { argument
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1683 public void handleMessage(Message msg) { argument
1684 switch (msg.what) {
1686 Session session = (Session)msg.obj;
1691 throw new IllegalStateException("unhandled message: " + msg.what);
1938 String msg = "caller uid " + uid + " lacks any of " + TextUtils.join(",", permissions);
1939 Log.w(TAG, " " + msg);
1940 throw new SecurityException(msg);
2011 String msg = "caller uid " + uid + " is different than the authenticator's uid";
2012 Log.w(TAG, msg);
2013 throw new SecurityException(msg);
[all...]
/frameworks/base/core/java/android/app/
H A DFragment.java519 public InstantiationException(String msg, Exception cause) { argument
520 super(msg, cause);
/frameworks/base/core/java/android/content/
H A DSyncManager.java688 Message msg = mSyncHandler.obtainMessage();
689 msg.what = SyncHandler.MESSAGE_SYNC_FINISHED;
690 msg.obj = new SyncHandlerMessagePayload(syncContext, syncResult);
691 mSyncHandler.sendMessage(msg);
696 Message msg = mSyncHandler.obtainMessage();
697 msg.what = SyncHandler.MESSAGE_CANCEL;
698 msg.obj = Pair.create(account, authority);
699 mSyncHandler.sendMessage(msg);
955 Message msg = mSyncHandler.obtainMessage();
956 msg
1610 handleMessage(Message msg) argument
[all...]
H A DSyncStorageEngine.java333 @Override public void handleMessage(Message msg) { argument
334 if (msg.what == MSG_WRITE_STATUS) {
338 } else if (msg.what == MSG_WRITE_STATISTICS) {
/frameworks/base/core/java/android/os/
H A DParcel.java1280 String msg = readString();
1281 readException(code, msg);
1322 * @param msg exception message
1324 public final void readException(int code, String msg) { argument
1327 throw new SecurityException(msg);
1329 throw new BadParcelableException(msg);
1331 throw new IllegalArgumentException(msg);
1333 throw new NullPointerException(msg);
1335 throw new IllegalStateException(msg);
1338 + " msg "
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java963 public void showBootMessage(final CharSequence msg, final boolean always); argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java324 public void handleMessage(Message msg) { argument
325 switch (msg.what) {
327 HandlerCaller.SomeArgs args = (HandlerCaller.SomeArgs)msg.obj;
340 final InputBindResult res = (InputBindResult)msg.obj;
356 final int sequence = msg.arg1;
388 final boolean active = msg.arg1 != 0;
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java495 * @param msg The message to handle.
498 public void handleMessage(Message msg) { argument
502 switch (msg.what) {
525 nativeCallPolicyFunction(msg.arg1, msg.arg2);
530 if (mOrientation != msg.arg1) {
531 mOrientation = msg.arg1;
532 nativeOrientationChanged(msg.arg1);
H A DCallbackProxy.java257 public void handleMessage(Message msg) { argument
262 switch (msg.what) {
264 String startedUrl = msg.getData().getString("url");
267 mWebViewClient.onPageStarted(mWebView, startedUrl, (Bitmap) msg.obj);
272 String finishedUrl = (String) msg.obj;
281 mWebChromeClient.onReceivedIcon(mWebView, (Bitmap) msg.obj);
288 (String) msg.obj, msg.arg1 == 1);
295 (String) msg.obj);
301 int reasonCode = msg
[all...]
H A DLoadListener.java187 public void handleMessage(Message msg) { argument
188 switch (msg.what) {
195 handleHeaders((Headers) msg.obj);
224 handleError(msg.arg1, (String) msg.obj);
255 HashMap status = (HashMap) msg.obj;
267 handleCertificate((SslCertificate) msg.obj);
275 handleSslError((SslError) msg.obj);
1595 private void sendMessageInternal(Message msg) { argument
1597 mMessageQueue.add(msg);
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp152 static void doThrowIAE(JNIEnv* env, const char* msg) { argument
153 jniThrowException(env, "java/lang/IllegalArgumentException", msg);
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp188 static void report_exception(JNIEnv* env, jthrowable excep, const char* msg) argument
193 jstring msgstr = env->NewStringUTF(msg);
198 LOGE("%s", msg);
206 LOGW("Failed trying to log exception, msg='%s'\n", msg);
719 String8 msg; local
720 msg.appendFormat("Unknown binder error code. 0x%x", err);
723 ? "android/os/RemoteException" : "java/lang/RuntimeException", msg.string());
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java1515 public void handleMessage(Message msg) { argument
1520 switch(msg.what) {
1534 mOnBufferingUpdateListener.onBufferingUpdate(mMediaPlayer, msg.arg1);
1544 mOnVideoSizeChangedListener.onVideoSizeChanged(mMediaPlayer, msg.arg1, msg.arg2);
1548 // For PV specific error values (msg.arg2) look in
1550 Log.e(TAG, "Error (" + msg.arg1 + "," + msg.arg2 + ")");
1553 error_was_handled = mOnErrorListener.onError(mMediaPlayer, msg.arg1, msg
[all...]
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1071 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1075 if (MEDIA_INFO == msg &&
1087 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1088 client->mClient->notify(msg, ext1, ext2, obj);
1680 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1682 LOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2);
1686 switch (msg)
1070 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument
1679 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp575 void AwesomePlayer::notifyListener_l(int msg, int ext1, int ext2) { argument
580 listener->sendEvent(msg, ext1, ext2);
/frameworks/base/media/libstagefright/rtsp/
H A DMyHandler.h180 sp<AMessage> msg = new AMessage('seek', id()); local
181 msg->setInt64("time", timeUs);
182 msg->post();
350 virtual void onMessageReceived(const sp<AMessage> &msg) { argument
351 switch (msg->what()) {
355 CHECK(msg->findInt32("result", &result));
381 if (msg->findInt32("reconnect", &reconnect) && reconnect) {
393 CHECK(msg->findInt32("result", &result));
400 CHECK(msg->findObject("response", &obj));
491 CHECK(msg
778 sp<AMessage> msg = mNotify->dup(); local
889 sp<AMessage> msg = mNotify->dup(); local
997 sp<AMessage> msg = mNotify->dup(); local
1033 sp<AMessage> msg = new AMessage('abor', id()); local
1051 sp<AMessage> msg = new AMessage('aliv', id()); local
1387 sp<AMessage> msg = mNotify->dup(); local
1460 sp<AMessage> msg = mNotify->dup(); local
1468 sp<AMessage> msg = mNotify->dup(); local
1476 sp<AMessage> msg = mNotify->dup(); local
1484 sp<AMessage> msg = mNotify->dup(); local
[all...]
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dapi.cpp32 glesv2debugger::Message msg; local
36 const int * operator()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) { argument
43 msg.set_arg0(texture);
45 int * ret = MessageLoop(caller, msg, glesv2debugger::Message_Function_glActiveTexture);
50 glesv2debugger::Message msg; local
55 const int * operator()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) { argument
63 msg.set_arg0(program);
64 msg.set_arg1(shader);
66 int * ret = MessageLoop(caller, msg, glesv2debugger::Message_Function_glAttachShader);
71 glesv2debugger::Message msg; local
77 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
97 glesv2debugger::Message msg; local
102 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
119 glesv2debugger::Message msg; local
124 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
140 glesv2debugger::Message msg; local
145 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
161 glesv2debugger::Message msg; local
166 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
182 glesv2debugger::Message msg; local
189 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
209 glesv2debugger::Message msg; local
213 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
227 glesv2debugger::Message msg; local
232 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
248 glesv2debugger::Message msg; local
253 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
269 glesv2debugger::Message msg; local
276 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
296 glesv2debugger::Message msg; local
303 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
326 glesv2debugger::Message msg; local
333 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
356 glesv2debugger::Message msg; local
360 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
376 glesv2debugger::Message msg; local
380 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
394 glesv2debugger::Message msg; local
401 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
421 glesv2debugger::Message msg; local
425 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
439 glesv2debugger::Message msg; local
443 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
457 glesv2debugger::Message msg; local
464 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
484 glesv2debugger::Message msg; local
488 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
503 glesv2debugger::Message msg; local
514 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
544 glesv2debugger::Message msg; local
556 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
587 glesv2debugger::Message msg; local
598 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
632 glesv2debugger::Message msg; local
643 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
677 glesv2debugger::Message msg; local
680 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
694 glesv2debugger::Message msg; local
698 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
714 glesv2debugger::Message msg; local
718 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
732 glesv2debugger::Message msg; local
737 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
756 glesv2debugger::Message msg; local
761 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
779 glesv2debugger::Message msg; local
783 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
797 glesv2debugger::Message msg; local
802 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
820 glesv2debugger::Message msg; local
824 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
838 glesv2debugger::Message msg; local
843 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
861 glesv2debugger::Message msg; local
865 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
879 glesv2debugger::Message msg; local
883 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
897 glesv2debugger::Message msg; local
902 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
918 glesv2debugger::Message msg; local
923 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
939 glesv2debugger::Message msg; local
943 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
957 glesv2debugger::Message msg; local
961 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
976 glesv2debugger::Message msg; local
980 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
994 glesv2debugger::Message msg; local
998 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1013 glesv2debugger::Message msg; local
1016 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1028 glesv2debugger::Message msg; local
1031 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1043 glesv2debugger::Message msg; local
1050 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1070 glesv2debugger::Message msg; local
1078 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1100 glesv2debugger::Message msg; local
1104 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1118 glesv2debugger::Message msg; local
1123 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1143 glesv2debugger::Message msg; local
1147 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1161 glesv2debugger::Message msg; local
1166 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1186 glesv2debugger::Message msg; local
1191 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1211 glesv2debugger::Message msg; local
1216 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1237 glesv2debugger::Message msg; local
1247 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1276 glesv2debugger::Message msg; local
1286 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1315 glesv2debugger::Message msg; local
1322 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1343 glesv2debugger::Message msg; local
1348 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1369 glesv2debugger::Message msg; local
1374 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1392 glesv2debugger::Message msg; local
1398 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1417 glesv2debugger::Message msg; local
1420 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1435 glesv2debugger::Message msg; local
1440 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1458 glesv2debugger::Message msg; local
1465 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1487 glesv2debugger::Message msg; local
1492 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1509 glesv2debugger::Message msg; local
1515 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1538 glesv2debugger::Message msg; local
1545 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1570 glesv2debugger::Message msg; local
1576 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1595 glesv2debugger::Message msg; local
1601 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1624 glesv2debugger::Message msg; local
1631 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1656 glesv2debugger::Message msg; local
1663 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1685 glesv2debugger::Message msg; local
1692 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1717 glesv2debugger::Message msg; local
1721 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1739 glesv2debugger::Message msg; local
1745 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1765 glesv2debugger::Message msg; local
1771 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1791 glesv2debugger::Message msg; local
1797 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1817 glesv2debugger::Message msg; local
1823 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1842 glesv2debugger::Message msg; local
1847 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1868 glesv2debugger::Message msg; local
1874 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1894 glesv2debugger::Message msg; local
1900 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1920 glesv2debugger::Message msg; local
1926 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1945 glesv2debugger::Message msg; local
1950 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1966 glesv2debugger::Message msg; local
1970 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
1986 glesv2debugger::Message msg; local
1990 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2006 glesv2debugger::Message msg; local
2010 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2026 glesv2debugger::Message msg; local
2030 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2046 glesv2debugger::Message msg; local
2050 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2066 glesv2debugger::Message msg; local
2070 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2086 glesv2debugger::Message msg; local
2090 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2106 glesv2debugger::Message msg; local
2110 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2124 glesv2debugger::Message msg; local
2128 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2142 glesv2debugger::Message msg; local
2147 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2163 glesv2debugger::Message msg; local
2168 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2184 glesv2debugger::Message msg; local
2194 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2227 glesv2debugger::Message msg; local
2230 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2242 glesv2debugger::Message msg; local
2249 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2269 glesv2debugger::Message msg; local
2274 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2290 glesv2debugger::Message msg; local
2297 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2318 glesv2debugger::Message msg; local
2326 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2349 glesv2debugger::Message msg; local
2356 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2383 glesv2debugger::Message msg; local
2389 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2407 glesv2debugger::Message msg; local
2414 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2434 glesv2debugger::Message msg; local
2438 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2452 glesv2debugger::Message msg; local
2457 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2473 glesv2debugger::Message msg; local
2479 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2497 glesv2debugger::Message msg; local
2504 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2524 glesv2debugger::Message msg; local
2536 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2573 glesv2debugger::Message msg; local
2579 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2598 glesv2debugger::Message msg; local
2604 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2623 glesv2debugger::Message msg; local
2629 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2648 glesv2debugger::Message msg; local
2654 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2673 glesv2debugger::Message msg; local
2685 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2722 glesv2debugger::Message msg; local
2727 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2743 glesv2debugger::Message msg; local
2749 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2769 glesv2debugger::Message msg; local
2774 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2790 glesv2debugger::Message msg; local
2796 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2816 glesv2debugger::Message msg; local
2822 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2840 glesv2debugger::Message msg; local
2846 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2866 glesv2debugger::Message msg; local
2872 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2890 glesv2debugger::Message msg; local
2896 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2916 glesv2debugger::Message msg; local
2923 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2943 glesv2debugger::Message msg; local
2949 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2969 glesv2debugger::Message msg; local
2976 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
2996 glesv2debugger::Message msg; local
3002 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3022 glesv2debugger::Message msg; local
3030 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3052 glesv2debugger::Message msg; local
3058 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3078 glesv2debugger::Message msg; local
3086 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3108 glesv2debugger::Message msg; local
3114 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3134 glesv2debugger::Message msg; local
3141 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3163 glesv2debugger::Message msg; local
3170 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3192 glesv2debugger::Message msg; local
3199 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3221 glesv2debugger::Message msg; local
3225 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3240 glesv2debugger::Message msg; local
3244 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3258 glesv2debugger::Message msg; local
3263 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3279 glesv2debugger::Message msg; local
3284 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3302 glesv2debugger::Message msg; local
3308 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3326 glesv2debugger::Message msg; local
3331 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3349 glesv2debugger::Message msg; local
3356 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3376 glesv2debugger::Message msg; local
3381 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3399 glesv2debugger::Message msg; local
3407 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3429 glesv2debugger::Message msg; local
3434 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3453 glesv2debugger::Message msg; local
3462 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
3488 glesv2debugger::Message msg; local
3495 operator ()(gl_hooks_t::gl_t const * const _c, glesv2debugger::Message & msg) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java2058 int msg = (mRecentsPanel.getVisibility() == View.VISIBLE)
2060 mHandler.removeMessages(msg);
2061 mHandler.sendEmptyMessage(msg);
2318 public TouchOutsideListener(int msg, RecentsPanelView panel) { argument
2319 mMsg = msg;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java1287 int msg = (mRecentsPanel.getVisibility() == View.VISIBLE)
1289 mHandler.removeMessages(msg);
1290 mHandler.sendEmptyMessage(msg);
1296 int msg = (mInputMethodsPanel.getVisibility() == View.GONE) ?
1298 mHandler.removeMessages(msg);
1299 mHandler.sendEmptyMessage(msg);
1303 int msg = (mCompatModePanel.getVisibility() == View.GONE) ?
1305 mHandler.removeMessages(msg);
1306 mHandler.sendEmptyMessage(msg);
1855 int msg
1890 TouchOutsideListener(int msg, StatusBarPanel panel) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java1845 public void handleMessage(Message msg) { argument
1847 if (msg.what == MESSAGE_LOCATION_CHANGED) {
1851 Location location = (Location) msg.obj;
1853 boolean passive = (msg.arg1 == 1);
1869 } else if (msg.what == MESSAGE_PACKAGE_UPDATED) {
1870 String packageName = (String) msg.obj;
H A DMountService.java367 public void handleMessage(Message msg) { argument
368 switch (msg.what) {
371 UnmountCallBack ucb = (UnmountCallBack) msg.obj;
437 UnmountCallBack ucb = (UnmountCallBack) msg.obj;
1928 String msg = "Unexpected result from cryptfs verifypw: {";
1929 if (tokens == null) msg += "null";
1931 if (i != 0) msg += ',';
1932 msg += tokens[i];
1934 msg += '}';
1935 Slog.e(TAG, msg);
2018 handleMessage(Message msg) argument
[all...]
H A DWifiService.java236 public void handleMessage(Message msg) { argument
237 switch (msg.what) {
239 if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
241 mClients.add((AsyncChannel) msg.obj);
243 Slog.e(TAG, "Client connection failure, error=" + msg.arg1);
248 if (msg.arg1 == AsyncChannel.STATUS_SEND_UNSUCCESSFUL) {
251 Slog.d(TAG, "Client connection lost with reason: " + msg.arg1);
253 mClients.remove((AsyncChannel) msg.obj);
258 ac.connect(mContext, this, msg.replyTo);
262 mEnableTrafficStatsPoll = (msg
326 handleMessage(Message msg) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnectionTracker.java475 Message msg = obtainMessage(EVENT_CLEAN_UP_CONNECTION);
476 msg.arg1 = 0; // tearDown is false
477 msg.arg2 = 0;
478 msg.obj = reason;
479 sendMessage(msg);
486 Message msg = obtainMessage(EVENT_DATA_STALL_ALARM, intent.getAction());
487 msg.arg1 = intent.getIntExtra(DATA_STALL_ALARM_TAG_EXTRA, 0);
488 sendMessage(msg);
657 public void handleMessage(Message msg) { argument
658 switch (msg
[all...]

Completed in 3988 milliseconds

<<111213