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.java1916 List<SoftApConnectedClientsEvent> softApEventList; in addSoftApConnectedClientsEvent() local
1919 softApEventList = mSoftApEventListTethered; in addSoftApConnectedClientsEvent()
1922 softApEventList = mSoftApEventListLocalOnly; in addSoftApConnectedClientsEvent()
1928 if (softApEventList.size() > MAX_NUM_SOFT_AP_EVENTS) { in addSoftApConnectedClientsEvent()
1933 softApEventList.add(event); in addSoftApConnectedClientsEvent()
1942 List<SoftApConnectedClientsEvent> softApEventList; in addSoftApChannelSwitchedEvent() local
1945 softApEventList = mSoftApEventListTethered; in addSoftApChannelSwitchedEvent()
1948 softApEventList = mSoftApEventListLocalOnly; in addSoftApChannelSwitchedEvent()
1954 for (int index = softApEventList.size() - 1; index >= 0; index--) { in addSoftApChannelSwitchedEvent()
1955 SoftApConnectedClientsEvent event = softApEventList.get(index); in addSoftApChannelSwitchedEvent()