Searched refs:removeRxFilter (Results 1 – 6 of 6) sorted by relevance
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaIfaceHalTest.java | 746 when(mStaIfaceHalAidlMock.removeRxFilter(anyString(), anyInt())).thenReturn(true); in testRemoveRxFilter() 747 assertTrue(mDut.removeRxFilter(IFACE_NAME, MODE)); in testRemoveRxFilter() 748 verify(mStaIfaceHalAidlMock).removeRxFilter(eq(IFACE_NAME), eq(MODE)); in testRemoveRxFilter()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ISupplicantStaIfaceHal.java | 433 boolean removeRxFilter(@NonNull String ifaceName, int type); in removeRxFilter() method
|
D | SupplicantStaIfaceHal.java | 1664 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHal 1670 return mStaIfaceHal.removeRxFilter(ifaceName, type); in removeRxFilter()
|
D | SupplicantStaIfaceHalHidlImpl.java | 2247 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHalHidlImpl 2261 return removeRxFilter(ifaceName, halType); in removeRxFilter() 2265 private boolean removeRxFilter(@NonNull String ifaceName, byte type) { in removeRxFilter() method in SupplicantStaIfaceHalHidlImpl 2271 SupplicantStatus status = iface.removeRxFilter(type); in removeRxFilter()
|
D | SupplicantStaIfaceHalAidlImpl.java | 1968 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHalAidlImpl 1982 return removeRxFilter(ifaceName, halType); in removeRxFilter() 1986 private boolean removeRxFilter(@NonNull String ifaceName, byte type) { in removeRxFilter() method in SupplicantStaIfaceHalAidlImpl 1994 iface.removeRxFilter(type); in removeRxFilter()
|
D | WifiNative.java | 2796 && mSupplicantStaIfaceHal.removeRxFilter( 2820 && mSupplicantStaIfaceHal.removeRxFilter(
|