Searched refs:wifiP2pDevice (Results 1 – 2 of 2) sorted by relevance
2153 WifiP2pDevice wifiP2pDevice = (WifiP2pDevice) mMessageCaptor.getValue().obj; in testRequestDeviceInfoSuccessWhenP2pEnabled() local2154 assertEquals(ANONYMIZED_DEVICE_ADDRESS, wifiP2pDevice.deviceAddress); in testRequestDeviceInfoSuccessWhenP2pEnabled()2155 assertEquals(thisDeviceName, wifiP2pDevice.deviceName); in testRequestDeviceInfoSuccessWhenP2pEnabled()2172 WifiP2pDevice wifiP2pDevice = (WifiP2pDevice) mMessageCaptor.getValue().obj; in testRequestDeviceInfoReturnEmptyWifiP2pDeviceWhenP2pDisabled() local2173 assertEquals("", wifiP2pDevice.deviceAddress); in testRequestDeviceInfoReturnEmptyWifiP2pDeviceWhenP2pDisabled()2174 assertEquals("", wifiP2pDevice.deviceName); in testRequestDeviceInfoReturnEmptyWifiP2pDeviceWhenP2pDisabled()2193 WifiP2pDevice wifiP2pDevice = (WifiP2pDevice) mMessageCaptor.getValue().obj; in testRequestDeviceInfoReturnsActualMacForNetworkSettingsApp() local2194 assertEquals(thisDeviceMac, wifiP2pDevice.deviceAddress); in testRequestDeviceInfoReturnsActualMacForNetworkSettingsApp()2195 assertEquals(thisDeviceName, wifiP2pDevice.deviceName); in testRequestDeviceInfoReturnsActualMacForNetworkSettingsApp()
826 void onDeviceInfoAvailable(@Nullable WifiP2pDevice wifiP2pDevice); in onDeviceInfoAvailable() argument