Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/
DNsdService.java840 Message dstMsg = obtainMessage(msg); in replyToMessage()
841 dstMsg.what = what; in replyToMessage()
842 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
847 Message dstMsg = obtainMessage(msg); in replyToMessage()
848 dstMsg.what = what; in replyToMessage()
849 dstMsg.arg1 = arg1; in replyToMessage()
850 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
855 Message dstMsg = obtainMessage(msg); in replyToMessage()
856 dstMsg.what = what; in replyToMessage()
857 dstMsg.obj = obj; in replyToMessage()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java563 public void replyToMessage(Message srcMsg, Message dstMsg) { in replyToMessage() argument
565 dstMsg.replyTo = mSrcMessenger; in replyToMessage()
566 srcMsg.replyTo.send(dstMsg); in replyToMessage()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java2912 Message dstMsg = obtainMessage(msg); in replyToMessage()
2913 dstMsg.what = what; in replyToMessage()
2914 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
2919 Message dstMsg = obtainMessage(msg); in replyToMessage()
2920 dstMsg.what = what; in replyToMessage()
2921 dstMsg.arg1 = arg1; in replyToMessage()
2922 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
2927 Message dstMsg = obtainMessage(msg); in replyToMessage()
2928 dstMsg.what = what; in replyToMessage()
2929 dstMsg.obj = obj; in replyToMessage()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java7705 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage()
7706 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
7711 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage()
7712 dstMsg.arg1 = arg1; in replyToMessage()
7713 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
7718 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage()
7719 dstMsg.obj = obj; in replyToMessage()
7720 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()