Searched refs:msg (Results 1 - 25 of 718) sorted by last modified time

1234567891011>>

/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java798 private static void handleInvalidParams(String msg) { argument
799 throw new IllegalArgumentException(msg + ". ");
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProvider.java402 public void handleMessage(Message msg) { argument
403 switch (msg.what) {
H A DMediaRouteProviderService.java443 Message msg = Message.obtain();
444 msg.what = what;
445 msg.arg1 = requestId;
446 msg.arg2 = arg;
447 msg.obj = obj;
448 msg.setData(data);
450 messenger.send(msg);
464 public void handleMessage(Message msg) { argument
465 switch (msg.what) {
467 onBinderDied((Messenger)msg
586 handleMessage(Message msg) argument
[all...]
H A DMediaRouter.java2400 public void post(int msg, Object obj) { argument
2401 obtainMessage(msg, obj).sendToTarget();
2405 public void handleMessage(Message msg) { argument
2406 final int what = msg.what;
2407 final Object obj = msg.obj;
H A DRegisteredMediaRouteProvider.java573 Message msg = Message.obtain();
574 msg.what = what;
575 msg.arg1 = requestId;
576 msg.arg2 = arg;
577 msg.obj = obj;
578 msg.setData(data);
579 msg.replyTo = mReceiveMessenger;
581 mServiceMessenger.send(msg);
620 public void handleMessage(Message msg) { argument
623 final int what = msg
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java183 void log(String msg) { argument
185 mLog.append(msg).append("\n");
187 Log.d(TAG, msg);
H A DBaseRecyclerViewInstrumentationTest.java339 public void assertLayoutCount(int count, String msg, long timeout) throws Throwable { argument
341 assertEquals(msg, count, layoutLatch.getCount());
344 public void assertNoLayout(String msg, long timeout) throws Throwable { argument
346 assertFalse(msg, layoutLatch.getCount() == 0);
H A DRecyclerViewLayoutTest.java1537 public void adapterChangeInMainThreadTest(String msg, argument
1569 assertTrue("Invalid data updates should be caught:" + msg,
1606 public void adapterChangeDuringScrollTest(String msg, final int orientation, argument
1665 assertTrue("Invalid data updates should be caught:" + msg,
H A DStaggeredGridLayoutManagerTest.java653 void assertSpans(String msg, int[]... childSpanTuples) { argument
655 assertSpan(msg, childSpanTuples[i][0], childSpanTuples[i][1]);
659 void assertSpan(String msg, int childPosition, int expectedSpan) { argument
661 assertNotNull(msg + "view at position " + childPosition + " should exists", view);
662 assertEquals(msg + "[child:" + childPosition + "]", expectedSpan,
798 void assertSpanAssignmentEquality(String msg, int[] set1, int[] set2, int start, int end) { argument
800 assertEquals(msg + " ind:" + i, set1[i], set2[i]);
804 void assertSpanAssignmentEquality(String msg, int[] set1, int[] set2, int start1, int start2, argument
807 assertEquals(msg + " ind1:" + (start1 + i) + ", ind2:" + (start2 + i), set1[start1 + i],
1600 public void assertNoLayout(String msg, lon argument
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java785 public void setMessageHandler(RSMessageHandler msg) { argument
786 mMessageCallback = msg;
789 rst.setMessageHandler(msg);
831 public void setErrorHandler(RSErrorHandler msg) { argument
832 mErrorCallback = msg;
835 rst.setErrorHandler(msg);
900 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
904 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
924 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
H A DRenderScriptThunker.java98 public void setMessageHandler(RSMessageHandler msg) { argument
99 mMessageCallback = msg;
116 public void setErrorHandler(RSErrorHandler msg) { argument
117 mErrorCallback = msg;
/frameworks/volley/src/com/android/volley/
H A DVolleyLog.java79 String msg = (args == null) ? format : String.format(Locale.US, format, args);
97 Thread.currentThread().getId(), caller, msg);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java217 final String msg = "Private browsing is not supported in WebView.";
219 throw new IllegalArgumentException(msg);
221 Log.w(TAG, msg);
960 public void requestImageRef(final Message msg) { argument
965 requestImageRef(msg);
970 mAwContents.requestImageRef(msg);
H A DWebViewContentsClientAdapter.java138 public void handleMessage(Message msg) {
139 switch(msg.what) {
141 WebView.WebViewTransport t = (WebView.WebViewTransport) msg.obj;
/frameworks/webview/chromium/tests/prebuilts/
H A Dandroid-janktesthelper.jar ... .BufferedWriter fw int jankyFrameNumber double frameRate int maxFrameDuration String msg protected void saveResults (java.lang.String) java. ...
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp384 void AudioSfDecoder::onSeek(const sp<AMessage> &msg) { argument
387 CHECK(msg->findInt64(WHATPARAM_SEEK_SEEKTIME_MS, &timeMsec));
396 GenericPlayer::onSeek(msg);
400 void AudioSfDecoder::onLoop(const sp<AMessage> &msg) { argument
403 CHECK(msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop));
414 GenericPlayer::onLoop(msg);
418 void AudioSfDecoder::onCheckCache(const sp<AMessage> &msg) { argument
443 msg->post(100000);
571 sp<AMessage> msg = new AMessage(kWhatRender, id()); local
572 msg
577 onMessageReceived(const sp<AMessage> &msg) argument
616 onNotify(const sp<AMessage> &msg) argument
[all...]
H A Dandroid_AudioSfDecoder.h81 void onCheckCache(const sp<AMessage> &msg);
88 virtual void onSeek(const sp<AMessage> &msg);
89 virtual void onLoop(const sp<AMessage> &msg);
92 virtual void onNotify(const sp<AMessage> &msg);
93 virtual void onMessageReceived(const sp<AMessage> &msg);
H A Dandroid_GenericMediaPlayer.cpp61 // Map a media_event_type enum (the msg of an IMediaPlayerClient::notify) to a string or NULL
62 static const char *media_event_type_to_string(media_event_type msg) argument
64 switch (msg) {
85 #define _(code, msg) case code: return msg;
99 #define _(code, msg) case code: return msg;
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
117 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
118 media_event_type_to_string((enum media_event_type) msg), ms
392 onSeek(const sp<AMessage> &msg) argument
427 onLoop(const sp<AMessage> &msg) argument
455 onAttachAuxEffect(const sp<AMessage> &msg) argument
469 onSetAuxEffectSendLevel(const sp<AMessage> &msg) argument
483 onBufferingUpdate(const sp<AMessage> &msg) argument
[all...]
H A Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
103 virtual void onSeek(const sp<AMessage> &msg);
104 virtual void onLoop(const sp<AMessage> &msg);
107 virtual void onBufferingUpdate(const sp<AMessage> &msg);
108 virtual void onAttachAuxEffect(const sp<AMessage> &msg);
109 virtual void onSetAuxEffectSendLevel(const sp<AMessage> &msg);
H A Dandroid_GenericPlayer.cpp139 sp<AMessage> msg = new AMessage(kWhatPrepare, id()); local
140 msg->post();
147 sp<AMessage> msg = new AMessage(kWhatPlay, id()); local
148 msg->post();
154 sp<AMessage> msg = new AMessage(kWhatPause, id()); local
155 msg->post();
174 sp<AMessage> msg = new AMessage(kWhatSeek, id()); local
175 msg->setInt64(WHATPARAM_SEEK_SEEKTIME_MS, timeMsec);
176 msg->post();
182 sp<AMessage> msg local
190 sp<AMessage> msg = new AMessage(kWhatBuffUpdateThres, id()); local
219 sp<AMessage> msg = new AMessage(kWhatAttachAuxEffect, id()); local
229 sp<AMessage> msg = new AMessage(kWhatSetAuxEffectSendLevel, id()); local
260 sp<AMessage> msg = new AMessage(kWhatSetPlayEvents, id()); local
288 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
301 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
313 onMessageReceived(const sp<AMessage> &msg) argument
408 onNotify(const sp<AMessage> &msg) argument
474 onSeek(const sp<AMessage> &msg) argument
479 onLoop(const sp<AMessage> &msg) argument
499 onBufferingUpdate(const sp<AMessage> &msg) argument
504 onSetBufferingUpdateThreshold(const sp<AMessage> &msg) argument
514 onAttachAuxEffect(const sp<AMessage> &msg) argument
519 onSetAuxEffectSendLevel(const sp<AMessage> &msg) argument
524 onSetPlayEvents(const sp<AMessage> &msg) argument
538 onOneShot(const sp<AMessage> &msg) argument
568 sp<AMessage> msg = new AMessage(kWhatSeekComplete, id()); local
575 sp<AMessage> msg = new AMessage(kWhatBufferingUpdate, id()); local
708 sp<AMessage> msg = new AMessage(kWhatOneShot, id()); local
[all...]
H A Dandroid_GenericPlayer.h130 virtual void onMessageReceived(const sp<AMessage> &msg);
134 virtual void onNotify(const sp<AMessage> &msg);
137 virtual void onSeek(const sp<AMessage> &msg);
138 virtual void onLoop(const sp<AMessage> &msg);
141 virtual void onBufferingUpdate(const sp<AMessage> &msg);
142 virtual void onSetBufferingUpdateThreshold(const sp<AMessage> &msg);
143 virtual void onAttachAuxEffect(const sp<AMessage> &msg);
144 virtual void onSetAuxEffectSendLevel(const sp<AMessage> &msg);
145 void onSetPlayEvents(const sp<AMessage> &msg);
146 void onOneShot(const sp<AMessage> &msg);
[all...]
H A Dandroid_StreamPlayer.cpp98 void StreamSourceAppProxy::receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg) { argument
100 mListener->issueCommand(cmd, false /* synchronous */, msg);
161 sp<AMessage> msg = new AMessage(); local
162 msg->setInt64(IStreamListener::kKeyResumeAtPTS,
164 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
167 sp<AMessage> msg = new AMessage(); local
168 msg->setInt32(
171 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
174 sp<AMessage> msg = new AMessage(); local
313 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
H A Dandroid_StreamPlayer.h51 void receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg = NULL);
89 virtual void onMessageReceived(const sp<AMessage> &msg);
/frameworks/rs/driver/
H A DrsdGL.cpp495 const char *msg, bool isFatal) {
499 snprintf(buf, sizeof(buf), "GL Error = 0x%08x, from: %s", err, msg);
H A DrsdGL.h85 const char *msg, bool isFatal = false);

Completed in 829 milliseconds

1234567891011>>