Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DTwtManagerTest.java160 Bundle twtStats = new Bundle(); in getMockTwtStats() local
161 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_TX_PACKET_COUNT, 200); in getMockTwtStats()
162 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_RX_PACKET_COUNT, 300); in getMockTwtStats()
163 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_TX_PACKET_SIZE, 400); in getMockTwtStats()
164 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_RX_PACKET_SIZE, 200); in getMockTwtStats()
165 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_EOSP_DURATION_MICROS, 1000); in getMockTwtStats()
166 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_EOSP_COUNT, 10); in getMockTwtStats()
167 return twtStats; in getMockTwtStats()
171 Bundle twtStats = new Bundle(); in getDefaultTwtStats() local
172 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_TX_PACKET_COUNT, -1); in getDefaultTwtStats()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DTwtManager.java170 Bundle twtStats = new Bundle(); in getDefaultTwtStats() local
171 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_TX_PACKET_COUNT, -1); in getDefaultTwtStats()
172 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_RX_PACKET_COUNT, -1); in getDefaultTwtStats()
173 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_TX_PACKET_SIZE, -1); in getDefaultTwtStats()
174 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_RX_PACKET_SIZE, -1); in getDefaultTwtStats()
175 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_AVERAGE_EOSP_DURATION_MICROS, -1); in getDefaultTwtStats()
176 twtStats.putInt(TwtSession.TWT_STATS_KEY_INT_EOSP_COUNT, -1); in getDefaultTwtStats()
177 return twtStats; in getDefaultTwtStats()
457 public void onTwtSessionStats(int cmdId, int twtSessionId, Bundle twtStats) { in onTwtSessionStats() argument
463 iTwtStatsListener.onResult(twtStats); in onTwtSessionStats()
DWifiVendorHal.java1803 public void onTwtSessionStats(int cmdId, int twtSessionId, Bundle twtStats) {
1807 mWifiTwtEvents.onTwtSessionStats(cmdId, twtSessionId, twtStats);
DWifiNative.java5486 void onTwtSessionStats(int cmdId, int twtSessionId, Bundle twtStats);
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiStaIfaceAidlImpl.java1022 Bundle twtStats = new Bundle(); in onTwtSessionStats()
1023 twtStats.putInt( in onTwtSessionStats()
1026 twtStats.putInt( in onTwtSessionStats()
1029 twtStats.putInt( in onTwtSessionStats()
1032 twtStats.putInt( in onTwtSessionStats()
1035 twtStats.putInt( in onTwtSessionStats()
1038 twtStats.putInt( in onTwtSessionStats()
1041 mFrameworkCallback.onTwtSessionStats(cmdId, twtSessionId, twtStats); in onTwtSessionStats()
DWifiStaIface.java160 void onTwtSessionStats(int cmdId, int twtSessionId, Bundle twtStats); in onTwtSessionStats() argument