Searched refs:mDebugLogs (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/java/com/android/server/location/
H A DComprehensiveCountryDetector.java88 private final ConcurrentLinkedQueue<Country> mDebugLogs = new ConcurrentLinkedQueue<Country>(); field in class:ComprehensiveCountryDetector
91 * Most recent {@link Country} result that was added to the debug logs {@link #mDebugLogs}.
202 if (mDebugLogs.size() >= MAX_LENGTH_DEBUG_LOGS) {
203 mDebugLogs.poll();
208 mDebugLogs.add(country);
486 for (Country country : mDebugLogs) {

Completed in 6 milliseconds