Searched refs:msg (Results 276 - 300 of 559) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/wifi-display/source/
H A DSender.cpp385 sp<AMessage> msg = new AMessage(kWhatQueuePackets, id()); local
386 msg->setBuffer("packets", packets);
391 msg->post(delayUs > 0 ? delayUs : 0);
394 void Sender::onMessageReceived(const sp<AMessage> &msg) { argument
395 switch (msg->what()) {
404 CHECK(msg->findInt32("reason", &reason));
410 CHECK(msg->findInt32("sessionID", &sessionID));
413 CHECK(msg->findInt32("err", &err));
416 CHECK(msg->findInt32("send", &errorOccuredDuringSend));
419 CHECK(msg
[all...]
H A DConverter.h71 virtual void onMessageReceived(const sp<AMessage> &msg);
H A DRepeaterSource.h23 void onMessageReceived(const sp<AMessage> &msg);
/frameworks/base/core/java/android/app/
H A DAlertDialog.java219 * @param msg The {@link Message} to be sent when clicked.
221 public void setButton(int whichButton, CharSequence text, Message msg) { argument
222 mAlert.setButton(whichButton, text, null, msg);
244 public void setButton(CharSequence text, Message msg) { argument
245 setButton(BUTTON_POSITIVE, text, msg);
253 public void setButton2(CharSequence text, Message msg) { argument
254 setButton(BUTTON_NEGATIVE, text, msg);
262 public void setButton3(CharSequence text, Message msg) { argument
263 setButton(BUTTON_NEUTRAL, text, msg);
H A DDialog.java1137 * @param msg The msg to send when the dialog is canceled.
1140 public void setCancelMessage(final Message msg) { argument
1141 mCancelMessage = msg;
1175 * @param msg The msg to send when the dialog is dismissed.
1177 public void setDismissMessage(final Message msg) { argument
1178 mDismissMessage = msg;
1182 public boolean takeCancelAndDismissListeners(String msg, final OnCancelListener cancel, argument
1192 mCancelAndDismissTaken = msg;
1229 handleMessage(Message msg) argument
[all...]
/frameworks/base/core/java/android/content/
H A DClipboardManager.java72 public void handleMessage(Message msg) {
73 switch (msg.what) {
/frameworks/base/services/java/com/android/server/
H A DEntropyMixer.java65 public void handleMessage(Message msg) {
66 if (msg.what != ENTROPY_WHAT) {
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorDialog.java91 public void handleMessage(Message msg) {
97 mResult.set(msg.what);
H A DStrictModeViolationDialog.java88 public void handleMessage(Message msg) {
94 mResult.set(msg.what);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java121 @Override public void handleMessage(Message msg) {
122 switch (msg.what) {
124 Bundle bundle = (Bundle)msg.obj;
280 Message msg = Message.obtain(null, TestService.CMD_START_TEST, bundle);
281 msg.replyTo = mMessenger;
283 conn.mService.send(msg);
337 Message msg = Message.obtain(null, TestService.CMD_TERMINATE);
339 conn.mService.send(msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java335 public void handleMessage(Message msg) { argument
338 switch(msg.what) {
340 ar = (AsyncResult) msg.obj;
350 ar = (AsyncResult) msg.obj;
360 ar = (AsyncResult) msg.obj;
370 ar = (AsyncResult) msg.obj;
450 private void log(String msg) { argument
451 if(DBG) Log.d(LOG_TAG, msg);
H A DGSMPhone.java1010 Message msg = obtainMessage(EVENT_SET_NETWORK_AUTOMATIC_COMPLETE, nsm);
1014 mCM.setNetworkSelectionModeAutomatic(msg);
1028 Message msg = obtainMessage(EVENT_SET_NETWORK_MANUAL_COMPLETE, nsm);
1030 mCM.setNetworkSelectionModeManual(network.getOperatorNumeric(), msg);
1160 public void handleMessage (Message msg) { argument
1164 switch (msg.what) {
1196 ar = (AsyncResult)msg.obj;
1207 ar = (AsyncResult)msg.obj;
1217 ar = (AsyncResult)msg.obj;
1227 ar = (AsyncResult)msg
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipConnectionBase.java167 private void log(String msg) { argument
168 Log.d(LOG_TAG, "[SipConn] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java621 public void handleMessage(Message msg) { argument
623 switch (msg.what) {
630 if (msg.obj != null) {
631 AsyncResult ar = (AsyncResult) msg.obj;
640 mMsgDecoder.sendStartDecodingMessageParams(new RilMessage(msg.what, data));
643 mMsgDecoder.sendStartDecodingMessageParams(new RilMessage(msg.what, null));
648 handleRilMsg((RilMessage) msg.obj);
651 handleCmdResponse((CatResponseMessage) msg.obj);
658 throw new AssertionError("Unrecognized CAT command: " + msg.what);
667 Message msg
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimRecords.java424 public void handleMessage(Message msg) { argument
432 loge("Received message " + msg +
433 "[" + msg.what + "] while being destroyed. Ignoring.");
437 try { switch (msg.what) {
450 ar = (AsyncResult)msg.obj;
476 ar = (AsyncResult)msg.obj;
493 ar = (AsyncResult)msg.obj;
507 ar = (AsyncResult)msg.obj;
517 Log.w(LOG_TAG, "Event not supported: " + msg.what);
527 ar = (AsyncResult)msg
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java175 * msg.arg1 = 1 enables temporary disconnect and 0 disables it.
2382 private void replyToMessage(Message msg, int what) { argument
2383 if (msg.replyTo == null) return;
2384 Message dstMsg = obtainMessage(msg);
2386 mReplyChannel.replyToMessage(msg, dstMsg);
2389 private void replyToMessage(Message msg, int what, int arg1) { argument
2390 if (msg.replyTo == null) return;
2391 Message dstMsg = obtainMessage(msg);
2394 mReplyChannel.replyToMessage(msg, dstMsg);
2397 private void replyToMessage(Message msg, in argument
2736 sendDialogMsgToFrontApp(Message msg) argument
[all...]
/frameworks/av/include/media/
H A DIHDCP.h27 int msg, int ext1, int ext2, const Parcel *obj) = 0;
H A DIStreamSource.h55 // specify an int64_t PTS timestamp in "msg".
77 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h35 void setFarewellMessage(const sp<AMessage> msg);
H A DALooper.h78 void post(const sp<AMessage> &msg, int64_t delayUs);
/frameworks/av/media/libmedia/
H A DIHDCP.cpp42 int msg, int ext1, int ext2, const Parcel *obj) {
45 data.writeInt32(msg);
120 int msg = data.readInt32(); local
132 notify(msg, ext1, ext2, &obj);
41 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp351 void NuPlayerDriver::notifyListener(int msg, int ext1, int ext2) { argument
352 if (msg == MEDIA_PLAYBACK_COMPLETE || msg == MEDIA_ERROR) {
356 sendEvent(msg, ext1, ext2);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextPlayer.h48 virtual void onMessageReceived(const sp<AMessage> &msg);
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DTunnelRenderer.h48 virtual void onMessageReceived(const sp<AMessage> &msg);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DJpegCompressor.h93 bool checkError(const char *msg);

Completed in 681 milliseconds

<<11121314151617181920>>