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

/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DInvoker.java71 private static final ThreadLocal<GroupAndInvokeCount> myGroupAndInvokeCount = field in class:Invoker
82 myGroupAndInvokeCount.set(new GroupAndInvokeCount(group));
89 return myGroupAndInvokeCount.get();
96 return myGroupAndInvokeCount.get() != null;
104 static boolean mayInvokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, argument
107 if ((myGroupAndInvokeCount != null) &&
108 (myGroupAndInvokeCount.group() == group) &&
109 (myGroupAndInvokeCount.invokeCount() < maxHandlerInvokeCount))
138 static <V,A> void invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, argument
144 myGroupAndInvokeCount
[all...]

Completed in 1519 milliseconds