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 | 783 Message dstMsg = obtainMessage(msg); in replyToMessage() 784 dstMsg.what = what; in replyToMessage() 785 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 790 Message dstMsg = obtainMessage(msg); in replyToMessage() 791 dstMsg.what = what; in replyToMessage() 792 dstMsg.arg1 = arg1; in replyToMessage() 793 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 798 Message dstMsg = obtainMessage(msg); in replyToMessage() 799 dstMsg.what = what; in replyToMessage() 800 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/base/core/java/com/android/internal/util/ |
D | AsyncChannel.java | 579 public void replyToMessage(Message srcMsg, Message dstMsg) { in replyToMessage() argument 581 dstMsg.replyTo = mSrcMessenger; in replyToMessage() 582 srcMsg.replyTo.send(dstMsg); in replyToMessage()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 3791 Message dstMsg = obtainMessage(msg); in replyToMessage() 3792 dstMsg.what = what; in replyToMessage() 3793 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3798 Message dstMsg = obtainMessage(msg); in replyToMessage() 3799 dstMsg.what = what; in replyToMessage() 3800 dstMsg.arg1 = arg1; in replyToMessage() 3801 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3806 Message dstMsg = obtainMessage(msg); in replyToMessage() 3807 dstMsg.what = what; in replyToMessage() 3808 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ClientModeImpl.java | 6068 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 6069 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 6074 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 6075 dstMsg.arg1 = arg1; in replyToMessage() 6076 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 6081 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 6082 dstMsg.obj = obj; in replyToMessage() 6083 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
|