Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiVendorHalTest.java390 when(mHalDeviceManager.getChip(any(IWifiIface.class))) in setUp()
466 verify(mHalDeviceManager).getChip(eq(mIWifiStaIface)); in testStartHalSuccessInStaMode()
488 verify(mHalDeviceManager).getChip(eq(mIWifiApIface)); in testStartHalSuccessInApMode()
516 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInStaMode()
537 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInIfaceCreationInStaMode()
548 when(mHalDeviceManager.getChip(any(IWifiIface.class))).thenReturn(null); in testStartHalFailureInChipGetInStaMode()
554 verify(mHalDeviceManager).getChip(any(IWifiIface.class)); in testStartHalFailureInChipGetInStaMode()
578 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInStaIfaceCallbackRegistration()
596 verify(mHalDeviceManager).getChip(any(IWifiIface.class)); in testStartHalFailureInChipCallbackRegistration()
621 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInApMode()
[all …]
DHalDeviceManagerTest.java3505 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(10), in initialize()
3570 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(12), in initialize()
3632 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(15), in initialize()
3704 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(23), in initialize()
3777 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(CHIP_ID), in initialize()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DHalDeviceManager.java362 public IWifiChip getChip(IWifiIface iface) { in getChip() method in HalDeviceManager
1009 mWifi.getChip(chipId, (WifiStatus status, IWifiChip chip) -> { in initIWifiChipDebugListeners()
1135 mWifi.getChip(chipId, (WifiStatus status, IWifiChip chip) -> { in getAllChipInfo()
2353 IWifiChip chip = getChip(iface); in removeIfaceInternal()
DWifiVendorHal.java742 mIWifiChip = mHalDeviceManager.getChip(iface); in retrieveWifiChip()