Searched refs:mTunnelSetupFailureCounts (Results 1 – 2 of 2) sorted by relevance
490 Map<String, Long> mTunnelSetupFailureCounts = new HashMap<String, Long>(); field in IwlanDataService.IwlanDataServiceProvider.IwlanDataTunnelStats538 if (!mTunnelSetupFailureCounts.containsKey(apn)) { in reportTunnelDown()539 mTunnelSetupFailureCounts.put(apn, 0L); in reportTunnelDown()541 long count = mTunnelSetupFailureCounts.get(apn); in reportTunnelDown()542 mTunnelSetupFailureCounts.put(apn, ++count); in reportTunnelDown()569 || mTunnelSetupFailureCounts.size() >= APN_COUNT_MAX in maxApnReached()595 for (Map.Entry<String, Long> entry : mTunnelSetupFailureCounts.entrySet()) { in toString()600 for (Map.Entry<String, Long> entry : mTunnelSetupFailureCounts.entrySet()) { in toString()612 mTunnelSetupFailureCounts = new HashMap<String, Long>(); in reset()
745 long result = stats.mTunnelSetupFailureCounts.get(TEST_APN_NAME); in testIwlanTunnelStatsFailureCounts()