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 | 741 when(mStaIfaceHalAidlMock.removeRxFilter(anyString(), anyInt())).thenReturn(true); in testRemoveRxFilter() 742 assertTrue(mDut.removeRxFilter(IFACE_NAME, MODE)); in testRemoveRxFilter() 743 verify(mStaIfaceHalAidlMock).removeRxFilter(eq(IFACE_NAME), eq(MODE)); in testRemoveRxFilter()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ISupplicantStaIfaceHal.java | 427 boolean removeRxFilter(@NonNull String ifaceName, int type); in removeRxFilter() method
|
D | SupplicantStaIfaceHal.java | 1660 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHal 1666 return mStaIfaceHal.removeRxFilter(ifaceName, type); in removeRxFilter()
|
D | SupplicantStaIfaceHalAidlImpl.java | 1882 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHalAidlImpl 1896 return removeRxFilter(ifaceName, halType); in removeRxFilter() 1900 private boolean removeRxFilter(@NonNull String ifaceName, byte type) { in removeRxFilter() method in SupplicantStaIfaceHalAidlImpl 1908 iface.removeRxFilter(type); in removeRxFilter()
|
D | SupplicantStaIfaceHalHidlImpl.java | 2213 public boolean removeRxFilter(@NonNull String ifaceName, int type) { in removeRxFilter() method in SupplicantStaIfaceHalHidlImpl 2227 return removeRxFilter(ifaceName, halType); in removeRxFilter() 2231 private boolean removeRxFilter(@NonNull String ifaceName, byte type) { in removeRxFilter() method in SupplicantStaIfaceHalHidlImpl 2237 SupplicantStatus status = iface.removeRxFilter(type); in removeRxFilter()
|
D | WifiNative.java | 2584 && mSupplicantStaIfaceHal.removeRxFilter( 2608 && mSupplicantStaIfaceHal.removeRxFilter(
|