Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiMetrics.java1811 List<SoftApConnectedClientsEvent> softApEventList; in addSoftApConnectedClientsEvent() local
1814 softApEventList = mSoftApEventListTethered; in addSoftApConnectedClientsEvent()
1817 softApEventList = mSoftApEventListLocalOnly; in addSoftApConnectedClientsEvent()
1823 if (softApEventList.size() > MAX_NUM_SOFT_AP_EVENTS) { in addSoftApConnectedClientsEvent()
1828 softApEventList.add(event); in addSoftApConnectedClientsEvent()
1837 List<SoftApConnectedClientsEvent> softApEventList; in addSoftApChannelSwitchedEvent() local
1840 softApEventList = mSoftApEventListTethered; in addSoftApChannelSwitchedEvent()
1843 softApEventList = mSoftApEventListLocalOnly; in addSoftApChannelSwitchedEvent()
1849 for (int index = softApEventList.size() - 1; index >= 0; index--) { in addSoftApChannelSwitchedEvent()
1850 SoftApConnectedClientsEvent event = softApEventList.get(index); in addSoftApChannelSwitchedEvent()