Home
last modified time | relevance | path

Searched refs:dstMsg (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pService.java1263 Message dstMsg = obtainMessage(msg); in replyToMessage()
1264 dstMsg.what = what; in replyToMessage()
1265 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
1270 Message dstMsg = obtainMessage(msg); in replyToMessage()
1271 dstMsg.what = what; in replyToMessage()
1272 dstMsg.arg1 = arg1; in replyToMessage()
1273 mReplyChannel.replyToMessage(msg, dstMsg); in replyToMessage()
1278 Message dstMsg = obtainMessage(msg); in replyToMessage()
1279 dstMsg.what = what; in replyToMessage()
1280 dstMsg.obj = obj; in replyToMessage()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java523 public void replyToMessage(Message srcMsg, Message dstMsg) { in replyToMessage() argument
525 dstMsg.replyTo = mSrcMessenger; in replyToMessage()
526 srcMsg.replyTo.send(dstMsg); in replyToMessage()