Searched refs:dstMsg (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/ |
D | NsdService.java | 852 Message dstMsg = obtainMessage(msg); in replyToMessage() 853 dstMsg.what = what; in replyToMessage() 854 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 859 Message dstMsg = obtainMessage(msg); in replyToMessage() 860 dstMsg.what = what; in replyToMessage() 861 dstMsg.arg1 = arg1; in replyToMessage() 862 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 867 Message dstMsg = obtainMessage(msg); in replyToMessage() 868 dstMsg.what = what; in replyToMessage() 869 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/base/core/java/com/android/internal/util/ |
D | AsyncChannel.java | 563 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/ |
D | WifiP2pServiceImpl.java | 2825 Message dstMsg = obtainMessage(msg); in replyToMessage() 2826 dstMsg.what = what; in replyToMessage() 2827 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 2832 Message dstMsg = obtainMessage(msg); in replyToMessage() 2833 dstMsg.what = what; in replyToMessage() 2834 dstMsg.arg1 = arg1; in replyToMessage() 2835 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 2840 Message dstMsg = obtainMessage(msg); in replyToMessage() 2841 dstMsg.what = what; in replyToMessage() 2842 dstMsg.obj = obj; in replyToMessage() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiStateMachine.java | 9639 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 9640 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 9645 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 9646 dstMsg.arg1 = arg1; in replyToMessage() 9647 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage() 9652 Message dstMsg = obtainMessageWithWhatAndArg2(msg, what); in replyToMessage() 9653 dstMsg.obj = obj; in replyToMessage() 9654 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
|