Home
last modified time | relevance | path

Searched refs:resultMsg (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java654 Message resultMsg = SyncMessenger.sendMessageSynchronously(mDstMessenger, msg); in sendMessageSynchronously() local
655 return resultMsg; in sendMessageSynchronously()
667 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
668 return resultMsg; in sendMessageSynchronously()
682 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
683 return resultMsg; in sendMessageSynchronously()
699 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
700 return resultMsg; in sendMessageSynchronously()
718 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
719 return resultMsg; in sendMessageSynchronously()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java1553 Message resultMsg = channel.sendMessageSynchronously(CMD_PING_SUPPLICANT); in syncPingSupplicant() local
1554 boolean result = (resultMsg.arg1 != FAILURE); in syncPingSupplicant()
1555 resultMsg.recycle(); in syncPingSupplicant()
1560 Message resultMsg = channel.sendMessageSynchronously(CMD_GET_CAPABILITY_FREQ); in syncGetChannelList() local
1562 if (resultMsg.obj != null) { in syncGetChannelList()
1564 String freqs = (String) resultMsg.obj; in syncGetChannelList()
1584 resultMsg.recycle(); in syncGetChannelList()
1964 Message resultMsg = mWifiApConfigChannel.sendMessageSynchronously(CMD_REQUEST_AP_CONFIG); in syncGetWifiApConfiguration() local
1965 WifiConfiguration ret = (WifiConfiguration) resultMsg.obj; in syncGetWifiApConfiguration()
1966 resultMsg.recycle(); in syncGetWifiApConfiguration()
[all …]
/frameworks/base/core/java/android/webkit/
DWebChromeClient.java134 boolean isUserGesture, Message resultMsg) { in onCreateWindow() argument