Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicLongFieldUpdater.java375 private final Class<?> cclass; field in AtomicLongFieldUpdater.CASUpdater
421 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in CASUpdater()
431 if (!cclass.isInstance(obj)) in accessCheck()
440 if (cclass == tclass) in throwAccessCheckException()
446 cclass.getName() + in throwAccessCheckException()
516 private final Class<?> cclass; field in AtomicLongFieldUpdater.LockedUpdater
562 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in LockedUpdater()
572 if (!cclass.isInstance(obj)) in accessCheck()
581 if (cclass == tclass) in accessCheckException()
587 cclass.getName() + in accessCheckException()
DAtomicReferenceFieldUpdater.java293 private final Class<?> cclass; field in AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
359 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicReferenceFieldUpdaterImpl()
389 if (!cclass.isInstance(obj)) in accessCheck()
398 if (cclass == tclass) in throwAccessCheckException()
404 cclass.getName() + in throwAccessCheckException()
DAtomicIntegerFieldUpdater.java376 private final Class<?> cclass; field in AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
426 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicIntegerFieldUpdaterImpl()
456 if (!cclass.isInstance(obj)) in accessCheck()
465 if (cclass == tclass) in throwAccessCheckException()
471 cclass.getName() + in throwAccessCheckException()