Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java653 Message resultMsg = SyncMessenger.sendMessageSynchronously(mDstMessenger, msg); in sendMessageSynchronously() local
654 return resultMsg; in sendMessageSynchronously()
666 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
667 return resultMsg; in sendMessageSynchronously()
681 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
682 return resultMsg; in sendMessageSynchronously()
698 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
699 return resultMsg; in sendMessageSynchronously()
717 Message resultMsg = sendMessageSynchronously(msg); in sendMessageSynchronously() local
718 return resultMsg; in sendMessageSynchronously()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java1498 Message resultMsg = channel.sendMessageSynchronously(CMD_QUERY_OSU_ICON, bundle); in syncQueryPasspointIcon() local
1499 int result = resultMsg.arg1; in syncQueryPasspointIcon()
1500 resultMsg.recycle(); in syncQueryPasspointIcon()
1505 Message resultMsg = channel.sendMessageSynchronously(CMD_MATCH_PROVIDER_NETWORK, fqdn); in matchProviderWithCurrentNetwork() local
1506 int result = resultMsg.arg1; in matchProviderWithCurrentNetwork()
1507 resultMsg.recycle(); in matchProviderWithCurrentNetwork()
1565 Message resultMsg = channel.sendMessageSynchronously(CMD_ADD_OR_UPDATE_NETWORK, config); in syncAddOrUpdateNetwork() local
1566 int result = resultMsg.arg1; in syncAddOrUpdateNetwork()
1567 resultMsg.recycle(); in syncAddOrUpdateNetwork()
1579 Message resultMsg = channel.sendMessageSynchronously(CMD_GET_CONFIGURED_NETWORKS, uuid); in syncGetConfiguredNetworks() local
[all …]
/frameworks/base/core/java/android/webkit/
DWebChromeClient.java149 boolean isUserGesture, Message resultMsg) { in onCreateWindow() argument
/frameworks/base/packages/Shell/src/com/android/shell/
DBugreportProgressService.java711 private void handleScreenshotResponse(Message resultMsg) { in handleScreenshotResponse() argument
712 final boolean taken = resultMsg.arg2 != 0; in handleScreenshotResponse()
713 final BugreportInfo info = getInfo(resultMsg.arg1); in handleScreenshotResponse()
717 final File screenshotFile = new File((String) resultMsg.obj); in handleScreenshotResponse()