Home
last modified time | relevance | path

Searched refs:setBtCoexistenceMode (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java752 when(mStaIfaceHalAidlMock.setBtCoexistenceMode(anyString(), anyInt())).thenReturn(true); in testSetBtCoexistenceMode()
753 assertTrue(mDut.setBtCoexistenceMode(IFACE_NAME, MODE)); in testSetBtCoexistenceMode()
754 verify(mStaIfaceHalAidlMock).setBtCoexistenceMode(eq(IFACE_NAME), eq(MODE)); in testSetBtCoexistenceMode()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java438 boolean setBtCoexistenceMode(@NonNull String ifaceName, int mode); in setBtCoexistenceMode() method
DSupplicantStaIfaceHal.java1679 public boolean setBtCoexistenceMode(@NonNull String ifaceName, int mode) { in setBtCoexistenceMode() method in SupplicantStaIfaceHal
1685 return mStaIfaceHal.setBtCoexistenceMode(ifaceName, mode); in setBtCoexistenceMode()
DSupplicantStaIfaceHalAidlImpl.java1928 public boolean setBtCoexistenceMode(@NonNull String ifaceName, int mode) { in setBtCoexistenceMode() method in SupplicantStaIfaceHalAidlImpl
1945 return setBtCoexistenceMode(ifaceName, halMode); in setBtCoexistenceMode()
1949 private boolean setBtCoexistenceMode(@NonNull String ifaceName, byte mode) { in setBtCoexistenceMode() method in SupplicantStaIfaceHalAidlImpl
1957 iface.setBtCoexistenceMode(mode); in setBtCoexistenceMode()
DSupplicantStaIfaceHalHidlImpl.java2255 public boolean setBtCoexistenceMode(@NonNull String ifaceName, int mode) { in setBtCoexistenceMode() method in SupplicantStaIfaceHalHidlImpl
2272 return setBtCoexistenceMode(ifaceName, halMode); in setBtCoexistenceMode()
2276 private boolean setBtCoexistenceMode(@NonNull String ifaceName, byte mode) { in setBtCoexistenceMode() method in SupplicantStaIfaceHalHidlImpl
2282 SupplicantStatus status = iface.setBtCoexistenceMode(mode); in setBtCoexistenceMode()
DWifiNative.java2638 return mSupplicantStaIfaceHal.setBtCoexistenceMode(ifaceName, mode);