/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceHalAidlImplTest.java | 1492 .configureExtListen(anyInt(), anyInt()); in testConfigureExtListen_success() 1493 doNothing().when(mISupplicantP2pIfaceMock).configureExtListen(eq(123), eq(456)); in testConfigureExtListen_success() 1494 doNothing().when(mISupplicantP2pIfaceMock).configureExtListen(eq(0), eq(0)); in testConfigureExtListen_success() 1498 assertFalse(mDut.configureExtListen(true, 123, 456, null)); in testConfigureExtListen_success() 1500 assertTrue(mDut.configureExtListen(true, 123, 456, null)); in testConfigureExtListen_success() 1502 assertTrue(mDut.configureExtListen(false, 999, 999, null)); in testConfigureExtListen_success() 1504 assertTrue(mDut.configureExtListen(false, -1, -1, null)); in testConfigureExtListen_success() 1522 assertFalse(mDut.configureExtListen(true, 123, 456, extListenParams)); in testConfigureExtListenWithParams_success() 1525 assertTrue(mDut.configureExtListen(true, 123, 456, extListenParams)); in testConfigureExtListenWithParams_success() 1528 assertTrue(mDut.configureExtListen(false, -1, -1, extListenParams)); in testConfigureExtListenWithParams_success() [all …]
|
D | SupplicantP2pIfaceHalHidlImplTest.java | 1579 when(mISupplicantP2pIfaceMock.configureExtListen(eq(123), eq(456))) in testConfigureExtListen_success() 1581 when(mISupplicantP2pIfaceMock.configureExtListen(eq(0), eq(0))) in testConfigureExtListen_success() 1584 assertFalse(mDut.configureExtListen(true, 123, 456, null)); in testConfigureExtListen_success() 1586 assertTrue(mDut.configureExtListen(true, 123, 456, null)); in testConfigureExtListen_success() 1588 assertTrue(mDut.configureExtListen(false, 999, 999, null)); in testConfigureExtListen_success() 1590 assertTrue(mDut.configureExtListen(false, -1, -1, null)); in testConfigureExtListen_success() 1599 when(mISupplicantP2pIfaceMock.configureExtListen(anyInt(), anyInt())) in testConfigureExtListen_invalidArguments() 1601 assertFalse(mDut.configureExtListen(true, -1, 1, null)); in testConfigureExtListen_invalidArguments() 1602 assertFalse(mDut.configureExtListen(true, 1, -1, null)); in testConfigureExtListen_invalidArguments() 1611 when(mISupplicantP2pIfaceMock.configureExtListen(anyInt(), anyInt())) in testConfigureExtListen_failure() [all …]
|
D | SupplicantP2pIfaceHalTest.java | 491 when(mP2pIfaceHalAidlMock.configureExtListen(anyBoolean(), anyInt(), anyInt(), any())) in testConfigureExtListen() 493 assertTrue(mDut.configureExtListen(ENABLE, period, interval, null)); in testConfigureExtListen() 494 verify(mP2pIfaceHalAidlMock).configureExtListen( in testConfigureExtListen()
|
D | WifiP2pNativeTest.java | 631 when(mSupplicantP2pIfaceHalMock.configureExtListen(anyBoolean(), anyInt(), anyInt(), any())) in testP2pExtListen() 634 verify(mSupplicantP2pIfaceHalMock).configureExtListen( in testP2pExtListen()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | ISupplicantP2pIfaceHal.java | 342 boolean configureExtListen(boolean enable, int periodInMillis, int intervalInMillis, in configureExtListen() method
|
D | SupplicantP2pIfaceHal.java | 626 public boolean configureExtListen(boolean enable, int periodInMillis, int intervalInMillis, in configureExtListen() method in SupplicantP2pIfaceHal 633 return mP2pIfaceHal.configureExtListen( in configureExtListen()
|
D | WifiP2pNative.java | 565 return mSupplicantP2pIfaceHal.configureExtListen(enable, period, interval, extListenParams); in p2pExtListen()
|
D | SupplicantP2pIfaceHalAidlImpl.java | 1335 public boolean configureExtListen(boolean enable, int periodInMillis, int intervalInMillis, in configureExtListen() method in SupplicantP2pIfaceHalAidlImpl 1366 mISupplicantP2pIface.configureExtListen(periodInMillis, intervalInMillis); in configureExtListen()
|
D | SupplicantP2pIfaceHalHidlImpl.java | 1482 public boolean configureExtListen(boolean enable, int periodInMillis, int intervalInMillis, in configureExtListen() method in SupplicantP2pIfaceHalHidlImpl 1508 mISupplicantP2pIface.configureExtListen(periodInMillis, intervalInMillis)); in configureExtListen()
|