OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getTxPacketCounters
(Results
1 - 5
of
5
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeTest.java
642
* Verifies that
getTxPacketCounters
() calls underlying WificondControl.
646
when(mWificondControl.
getTxPacketCounters
()).thenReturn(PACKET_COUNTERS_RESULT);
648
assertEquals(PACKET_COUNTERS_RESULT, mWifiNative.
getTxPacketCounters
());
649
verify(mWificondControl).
getTxPacketCounters
();
WificondControlTest.java
386
* Verifies that
getTxPacketCounters
() calls wificond.
397
mWificondControl.
getTxPacketCounters
();
402
* Verifies that
getTxPacketCounters
() returns null when there is no configured client
421
assertEquals(null, mWificondControl.
getTxPacketCounters
());
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java
293
public WifiNative.TxPacketCounters
getTxPacketCounters
() {
WifiNative.java
202
public TxPacketCounters
getTxPacketCounters
() {
203
return mWificondControl.
getTxPacketCounters
();
[
all
...]
WifiStateMachine.java
[
all
...]
Completed in 87 milliseconds