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.java656 Message resultMsg = SyncMessenger.sendMessageSynchronously(mDstMessenger, msg); in sendMessageSynchronously() local
657 return resultMsg; in sendMessageSynchronously()
669 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
670 return resultMsg; in sendMessageSynchronously()
684 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
685 return resultMsg; in sendMessageSynchronously()
701 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
702 return resultMsg; in sendMessageSynchronously()
720 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
721 return resultMsg; in sendMessageSynchronously()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java1243 Message resultMsg = channel.sendMessageSynchronously(CMD_PING_SUPPLICANT); in syncPingSupplicant() local
1244 boolean result = (resultMsg.arg1 != FAILURE); in syncPingSupplicant()
1245 resultMsg.recycle(); in syncPingSupplicant()
1250 Message resultMsg = channel.sendMessageSynchronously(CMD_GET_CAPABILITY_FREQ); in syncGetChannelList() local
1252 if (resultMsg.obj != null) { in syncGetChannelList()
1254 String freqs = (String) resultMsg.obj; in syncGetChannelList()
1273 resultMsg.recycle(); in syncGetChannelList()
1970 Message resultMsg = mWifiApConfigChannel.sendMessageSynchronously(CMD_REQUEST_AP_CONFIG); in syncGetWifiApConfiguration() local
1971 WifiConfiguration ret = (WifiConfiguration) resultMsg.obj; in syncGetWifiApConfiguration()
1972 resultMsg.recycle(); in syncGetWifiApConfiguration()
[all …]
/frameworks/base/core/java/android/webkit/
DWebChromeClient.java131 boolean isUserGesture, Message resultMsg) { in onCreateWindow() argument