Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiVendorHalTest.java327 when(mHalDeviceManager.getChip(any(IWifiIface.class))) in setUp()
390 verify(mHalDeviceManager).getChip(eq(mIWifiStaIface)); in testStartHalSuccessInStaMode()
410 verify(mHalDeviceManager).getChip(eq(mIWifiApIface)); in testStartHalSuccessInApMode()
437 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInStaMode()
457 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInIfaceCreationInStaMode()
468 when(mHalDeviceManager.getChip(any(IWifiIface.class))).thenReturn(null); in testStartHalFailureInChipGetInStaMode()
474 verify(mHalDeviceManager).getChip(any(IWifiIface.class)); in testStartHalFailureInChipGetInStaMode()
497 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInStaIfaceCallbackRegistration()
514 verify(mHalDeviceManager).getChip(any(IWifiIface.class)); in testStartHalFailureInChipCallbackRegistration()
537 verify(mHalDeviceManager, never()).getChip(any(IWifiIface.class)); in testStartHalFailureInApMode()
[all …]
DHalDeviceManagerTest.java3143 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(10), in initialize()
3208 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(12), in initialize()
3270 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(15), in initialize()
3342 doAnswer(new GetChipAnswer(mStatusOk, chip)).when(mWifiMock).getChip(eq(23), in initialize()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DHalDeviceManager.java282 public IWifiChip getChip(IWifiIface iface) { in getChip() method in HalDeviceManager
833 mWifi.getChip(chipId, (WifiStatus status, IWifiChip chip) -> { in initIWifiChipDebugListeners()
943 mWifi.getChip(chipId, (WifiStatus status, IWifiChip chip) -> { in getAllChipInfo()
1932 IWifiChip chip = getChip(iface); in removeIfaceInternal()
DWifiVendorHal.java523 mIWifiChip = mHalDeviceManager.getChip(iface); in retrieveWifiChip()