Searched refs:dstMsg (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | WifiAsyncChannel.java | 71 public void replyToMessage(Message srcMsg, Message dstMsg) { in replyToMessage() argument 76 .c(dstMsg.what) in replyToMessage() 78 super.replyToMessage(srcMsg, dstMsg); in replyToMessage()
|
/frameworks/base/services/core/java/com/android/server/ |
D | NsdService.java | 786 Message dstMsg = obtainMessage(msg); in replyToMessage() 787 dstMsg.what = what; in replyToMessage() 788 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 793 Message dstMsg = obtainMessage(msg); in replyToMessage() 794 dstMsg.what = what; in replyToMessage() 795 dstMsg.arg1 = arg1; in replyToMessage() 796 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 801 Message dstMsg = obtainMessage(msg); in replyToMessage() 802 dstMsg.what = what; in replyToMessage() 803 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/base/core/java/com/android/internal/util/ |
D | AsyncChannel.java | 562 public void replyToMessage(Message srcMsg, Message dstMsg) { in replyToMessage() argument 564 dstMsg.replyTo = mSrcMessenger; in replyToMessage() 565 srcMsg.replyTo.send(dstMsg); in replyToMessage()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 3178 Message dstMsg = obtainMessage(msg); in replyToMessage() 3179 dstMsg.what = what; in replyToMessage() 3180 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3185 Message dstMsg = obtainMessage(msg); in replyToMessage() 3186 dstMsg.what = what; in replyToMessage() 3187 dstMsg.arg1 = arg1; in replyToMessage() 3188 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3193 Message dstMsg = obtainMessage(msg); in replyToMessage() 3194 dstMsg.what = what; in replyToMessage() 3195 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiStateMachine.java | 5582 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5583 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 5588 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5589 dstMsg.arg1 = arg1; in replyToMessage() 5590 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 5595 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5596 dstMsg.obj = obj; in replyToMessage() 5597 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
|