Home
last modified time | relevance | path

Searched refs:cclass (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/atomic/
DAtomicLongFieldUpdater.java347 private final Class<?> cclass; field in AtomicLongFieldUpdater.CASUpdater
382 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in CASUpdater()
392 if (!cclass.isInstance(obj)) in accessCheck()
401 if (cclass == tclass) in throwAccessCheckException()
407 cclass.getName() + in throwAccessCheckException()
477 private final Class<?> cclass; field in AtomicLongFieldUpdater.LockedUpdater
512 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in LockedUpdater()
522 if (!cclass.isInstance(obj)) in accessCheck()
531 if (cclass == tclass) in accessCheckException()
537 cclass.getName() + in accessCheckException()
DAtomicReferenceFieldUpdater.java265 private final Class<?> cclass; field in AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
320 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicReferenceFieldUpdaterImpl()
349 if (!cclass.isInstance(obj)) in accessCheck()
358 if (cclass == tclass) in throwAccessCheckException()
364 cclass.getName() + in throwAccessCheckException()
DAtomicIntegerFieldUpdater.java348 private final Class<?> cclass; field in AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
389 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicIntegerFieldUpdaterImpl()
417 if (!cclass.isInstance(obj)) in accessCheck()
426 if (cclass == tclass) in throwAccessCheckException()
432 cclass.getName() + in throwAccessCheckException()