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

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java38 * @param tclass the class of the objects holding the field
48 public static <U> AtomicLongFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) { argument
50 return new CASUpdater<U>(tclass, fieldName);
52 return new LockedUpdater<U>(tclass, fieldName);
243 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.CASUpdater
246 CASUpdater(Class<T> tclass, String fieldName) { argument
251 field = tclass.getDeclaredField(fieldName); // android-changed
256 // caller, tclass, null, modifiers);
257 // ClassLoader cl = tclass.getClassLoader();
261 // sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
337 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.LockedUpdater
340 LockedUpdater(Class<T> tclass, String fieldName) argument
[all...]
H A DAtomicReferenceFieldUpdater.java56 * @param tclass the class of the objects holding the field
66 public static <U, W> AtomicReferenceFieldUpdater<U,W> newUpdater(Class<U> tclass, Class<W> vclass, String fieldName) { argument
67 return new AtomicReferenceFieldUpdaterImpl<U,W>(tclass,
159 private final Class<T> tclass; field in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
175 AtomicReferenceFieldUpdaterImpl(final Class<T> tclass, argument
183 field = tclass.getDeclaredField(fieldName); // android-changed
188 // caller, tclass, null, modifiers);
189 // ClassLoader cl = tclass.getClassLoader();
193 // sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
212 caller != tclass)
[all...]
H A DAtomicIntegerFieldUpdater.java38 * @param tclass the class of the objects holding the field
48 public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) { argument
49 return new AtomicIntegerFieldUpdaterImpl<U>(tclass, fieldName);
243 private final Class<T> tclass; field in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
246 AtomicIntegerFieldUpdaterImpl(Class<T> tclass, String fieldName) { argument
251 field = tclass.getDeclaredField(fieldName); // android-changed
257 // caller, tclass, null, modifiers);
258 // ClassLoader cl = tclass.getClassLoader();
262 // sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
281 caller != tclass)
[all...]

Completed in 18 milliseconds