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

/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIControl.java71 private static class ThreadLocalByteBuffer { class in class:JRSUIControl
75 public ThreadLocalByteBuffer() { method in class:JRSUIControl.ThreadLocalByteBuffer
82 private static final ThreadLocal<ThreadLocalByteBuffer> threadLocal = new ThreadLocal<ThreadLocalByteBuffer>();
83 private static ThreadLocalByteBuffer getThreadLocalBuffer() {
84 ThreadLocalByteBuffer byteBuffer = threadLocal.get();
87 byteBuffer = new ThreadLocalByteBuffer();
131 private BufferState loadBufferWithChanges(final ThreadLocalByteBuffer localByteBuffer) {
218 final ThreadLocalByteBuffer localByteBuffer = getThreadLocalBuffer();
253 final ThreadLocalByteBuffer localByteBuffe
[all...]

Completed in 76 milliseconds