Searched refs:dstMsg (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java840 Message dstMsg = obtainMessage(msg);
841 dstMsg.what = what;
842 mReplyChannel.replyToMessage(msg, dstMsg);
847 Message dstMsg = obtainMessage(msg);
848 dstMsg.what = what;
849 dstMsg.arg1 = arg1;
850 mReplyChannel.replyToMessage(msg, dstMsg);
855 Message dstMsg = obtainMessage(msg);
856 dstMsg.what = what;
857 dstMsg
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java558 * Reply to srcMsg sending dstMsg
561 * @param dstMsg
563 public void replyToMessage(Message srcMsg, Message dstMsg) { argument
565 dstMsg.replyTo = mSrcMessenger;
566 srcMsg.replyTo.send(dstMsg);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java2924 Message dstMsg = obtainMessage(msg);
2925 dstMsg.what = what;
2926 mReplyChannel.replyToMessage(msg, dstMsg);
2931 Message dstMsg = obtainMessage(msg);
2932 dstMsg.what = what;
2933 dstMsg.arg1 = arg1;
2934 mReplyChannel.replyToMessage(msg, dstMsg);
2939 Message dstMsg = obtainMessage(msg);
2940 dstMsg.what = what;
2941 dstMsg
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java7784 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what);
7785 mReplyChannel.replyToMessage(msg, dstMsg);
7790 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what);
7791 dstMsg.arg1 = arg1;
7792 mReplyChannel.replyToMessage(msg, dstMsg);
7797 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what);
7798 dstMsg.obj = obj;
7799 mReplyChannel.replyToMessage(msg, dstMsg);

Completed in 273 milliseconds