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

/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java66 * @param tclass the class of the objects holding the field
75 public static <U> AtomicLongFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) { argument
78 return new CASUpdater<U>(tclass, fieldName, caller);
80 return new LockedUpdater<U>(tclass, fieldName, caller);
271 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.CASUpdater
274 CASUpdater(Class<T> tclass, String fieldName, Class<?> caller) { argument
278 field = tclass.getDeclaredField(fieldName);
281 caller, tclass, null, modifiers);
282 sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
295 caller != tclass)
352 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.LockedUpdater
355 LockedUpdater(Class<T> tclass, String fieldName, Class<?> caller) argument
[all...]
H A DAtomicReferenceFieldUpdater.java85 * @param tclass the class of the objects holding the field.
94 public static <U, W> AtomicReferenceFieldUpdater<U,W> newUpdater(Class<U> tclass, Class<W> vclass, String fieldName) { argument
95 return new AtomicReferenceFieldUpdaterImpl<U,W>(tclass,
188 private final Class<T> tclass; field in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
204 AtomicReferenceFieldUpdaterImpl(Class<T> tclass, argument
212 field = tclass.getDeclaredField(fieldName);
215 caller, tclass, null, modifiers);
216 sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
229 caller != tclass) ? caller : null;
230 this.tclass
[all...]
H A DAtomicIntegerFieldUpdater.java66 * @param tclass the class of the objects holding the field
75 public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) { argument
76 return new AtomicIntegerFieldUpdaterImpl<U>(tclass, fieldName, Reflection.getCallerClass());
271 private final Class<T> tclass; field in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
274 AtomicIntegerFieldUpdaterImpl(Class<T> tclass, String fieldName, Class<?> caller) { argument
278 field = tclass.getDeclaredField(fieldName);
281 caller, tclass, null, modifiers);
282 sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
295 caller != tclass) ? caller : null;
296 this.tclass
[all...]

Completed in 1936 milliseconds