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

/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java853 Message dstMsg = obtainMessage(msg);
854 dstMsg.what = what;
855 mReplyChannel.replyToMessage(msg, dstMsg);
860 Message dstMsg = obtainMessage(msg);
861 dstMsg.what = what;
862 dstMsg.arg1 = arg1;
863 mReplyChannel.replyToMessage(msg, dstMsg);
868 Message dstMsg = obtainMessage(msg);
869 dstMsg.what = what;
870 dstMsg
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java560 * Reply to srcMsg sending dstMsg
563 * @param dstMsg
565 public void replyToMessage(Message srcMsg, Message dstMsg) { argument
567 dstMsg.replyTo = mSrcMessenger;
568 srcMsg.replyTo.send(dstMsg);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java2813 Message dstMsg = obtainMessage(msg);
2814 dstMsg.what = what;
2815 mReplyChannel.replyToMessage(msg, dstMsg);
2820 Message dstMsg = obtainMessage(msg);
2821 dstMsg.what = what;
2822 dstMsg.arg1 = arg1;
2823 mReplyChannel.replyToMessage(msg, dstMsg);
2828 Message dstMsg = obtainMessage(msg);
2829 dstMsg.what = what;
2830 dstMsg
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java8045 Message dstMsg = obtainMessageWithArg2(msg);
8046 dstMsg.what = what;
8047 mReplyChannel.replyToMessage(msg, dstMsg);
8052 Message dstMsg = obtainMessageWithArg2(msg);
8053 dstMsg.what = what;
8054 dstMsg.arg1 = arg1;
8055 mReplyChannel.replyToMessage(msg, dstMsg);
8060 Message dstMsg = obtainMessageWithArg2(msg);
8061 dstMsg.what = what;
8062 dstMsg
[all...]

Completed in 179 milliseconds