Searched defs:gate (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/charset/
H A DCharset.java410 // Thread-local gate to prevent recursive provider lookups
411 private static ThreadLocal<ThreadLocal> gate = new ThreadLocal<ThreadLocal>(); field in class:Charset
426 if (gate.get() != null)
430 gate.set(gate);
446 gate.set(null);

Completed in 54 milliseconds