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 | 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 | 3756 Message dstMsg = obtainMessage(msg); in replyToMessage() 3757 dstMsg.what = what; in replyToMessage() 3758 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3763 Message dstMsg = obtainMessage(msg); in replyToMessage() 3764 dstMsg.what = what; in replyToMessage() 3765 dstMsg.arg1 = arg1; in replyToMessage() 3766 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 3771 Message dstMsg = obtainMessage(msg); in replyToMessage() 3772 dstMsg.what = what; in replyToMessage() 3773 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ClientModeImpl.java | 5976 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5977 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 5982 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5983 dstMsg.arg1 = arg1; in replyToMessage() 5984 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 5989 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 5990 dstMsg.obj = obj; in replyToMessage() 5991 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
|