Home
last modified time | relevance | path

Searched refs:caller (Results 1 – 25 of 34) sorted by relevance

12

/libcore/ojluni/src/main/java/java/security/acl/
DAcl.java106 public void setName(Principal caller, String name) in setName() argument
139 public boolean addEntry(Principal caller, AclEntry entry) in addEntry() argument
155 public boolean removeEntry(Principal caller, AclEntry entry) in removeEntry() argument
DOwner.java57 public boolean addOwner(Principal caller, Principal owner) in addOwner() argument
81 public boolean deleteOwner(Principal caller, Principal owner) in deleteOwner() argument
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicLongFieldUpdater.java86 Class<?> caller = Reflection.getCallerClass(); in newUpdater() local
88 return new CASUpdater<U>(tclass, fieldName, caller); in newUpdater()
90 return new LockedUpdater<U>(tclass, fieldName, caller); in newUpdater()
380 final Class<?> caller) { in CASUpdater() argument
396 caller, tclass, null, modifiers); in CASUpdater()
421 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in CASUpdater()
521 final Class<?> caller) { in LockedUpdater() argument
537 caller, tclass, null, modifiers); in LockedUpdater()
562 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in LockedUpdater()
DAtomicReferenceFieldUpdater.java314 final Class<?> caller) { in AtomicReferenceFieldUpdaterImpl() argument
331 caller, tclass, null, modifiers); in AtomicReferenceFieldUpdaterImpl()
359 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicReferenceFieldUpdaterImpl()
DAtomicIntegerFieldUpdater.java382 final Class<?> caller) { in AtomicIntegerFieldUpdaterImpl() argument
399 caller, tclass, null, modifiers); in AtomicIntegerFieldUpdaterImpl()
426 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass; in AtomicIntegerFieldUpdaterImpl()
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DLambdaMetafactory.java36 public static CallSite metafactory(MethodHandles.Lookup caller, in metafactory() argument
44 public static CallSite altMetafactory(MethodHandles.Lookup caller, in altMetafactory() argument
/libcore/ojluni/src/main/java/java/sql/
DDriverManager.java462 private static boolean isDriverAllowed(Driver driver, Class<?> caller) { in isDriverAllowed() argument
463 ClassLoader callerCL = caller != null ? caller.getClassLoader() : null; in isDriverAllowed()
549 String url, java.util.Properties info, Class<?> caller) throws SQLException { in getConnection() argument
556 ClassLoader callerCL = caller != null ? caller.getClassLoader() : null; in getConnection()
/libcore/ojluni/src/main/native/
DRuntime.c78 jobject javaLoader, jclass caller) in Runtime_nativeLoad() argument
80 return JVM_NativeLoad(env, javaFilename, javaLoader, caller); in Runtime_nativeLoad()
/libcore/ojluni/src/main/java/javax/sql/
DRowSetWriter.java62 boolean writeData(RowSetInternal caller) throws SQLException; in writeData() argument
DRowSetReader.java71 void readData(RowSetInternal caller) throws SQLException; in readData() argument
/libcore/ojluni/src/main/java/sun/misc/
DUnsafe.java59 Class<?> caller = Reflection.getCallerClass(); in getUnsafe() local
64 ClassLoader calling = (caller == null) ? null : caller.getClassLoader(); in getUnsafe()
/libcore/ojluni/src/main/java/java/util/concurrent/
DCountedCompleter.java468 public void onCompletion(CountedCompleter<?> caller) { in onCompletion() argument
489 public boolean onExceptionalCompletion(Throwable ex, CountedCompleter<?> caller) { in onExceptionalCompletion() argument
/libcore/ojluni/src/main/java/java/util/logging/
DLogger.java377 …Logger(String name, String resourceBundleName, Class<?> caller, LogManager manager, boolean isSyst… in Logger() argument
380 setupResourceInfo(resourceBundleName, caller); in Logger()
385 private void setCallersClassLoaderRef(Class<?> caller) { in setCallersClassLoaderRef() argument
386 ClassLoader callersClassLoader = ((caller != null) in setCallersClassLoaderRef()
387 ? caller.getClassLoader() in setCallersClassLoaderRef()
447 private static Logger demandLogger(String name, String resourceBundleName, Class<?> caller) { in demandLogger() argument
451 if (caller.getClassLoader() == null) { in demandLogger()
455 return manager.demandLogger(name, resourceBundleName, caller); in demandLogger()
/libcore/jsr166-tests/src/test/java/jsr166/
DCountedCompleterTest.java231 public void onCompletion(CountedCompleter caller) {
233 super.onCompletion(caller);
236 CountedCompleter caller) {
240 assertTrue(super.onExceptionalCompletion(ex, caller));
552 public final void onCompletion(CountedCompleter caller) {
553 super.onCompletion(caller);
566 public final void onCompletion(CountedCompleter caller) {
567 super.onCompletion(caller);
603 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
604 super.onCompletion(caller); in onCompletion()
[all …]
DForkJoinPool8Test.java895 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
908 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
949 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
962 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
/libcore/ojluni/src/test/java/util/concurrent/tck/
DCountedCompleterTest.java256 public void onCompletion(CountedCompleter caller) {
258 super.onCompletion(caller);
261 CountedCompleter caller) {
265 assertTrue(super.onExceptionalCompletion(ex, caller));
577 public final void onCompletion(CountedCompleter caller) {
578 super.onCompletion(caller);
591 public final void onCompletion(CountedCompleter caller) {
592 super.onCompletion(caller);
628 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
629 super.onCompletion(caller); in onCompletion()
[all …]
DForkJoinPool8Test.java913 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
926 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
967 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
980 public final void onCompletion(CountedCompleter caller) { in onCompletion() argument
/libcore/ojluni/src/main/java/java/lang/
DClassLoader.java1102 static ClassLoader getClassLoader(Class<?> caller) { in getClassLoader() argument
1104 if (caller == null) { in getClassLoader()
1110 return caller.getClassLoader(); in getClassLoader()
DRuntime.java1124 private static native String nativeLoad(String filename, ClassLoader loader, Class<?> caller); in nativeLoad() argument
/libcore/ojluni/src/main/java/java/util/stream/
DFindOps.java302 public void onCompletion(CountedCompleter<?> caller) { in onCompletion() argument
314 super.onCompletion(caller); in onCompletion()
DAbstractTask.java329 public void onCompletion(CountedCompleter<?> caller) { in onCompletion() argument
DReduceOps.java751 public void onCompletion(CountedCompleter<?> caller) {
758 super.onCompletion(caller);
DSliceOps.java634 public final void onCompletion(CountedCompleter<?> caller) {
658 super.onCompletion(caller);
/libcore/ojluni/annotations/hiddenapi/java/util/logging/
DLogger.java40 java.lang.Class<?> caller, in Logger() argument
54 private void setCallersClassLoaderRef(java.lang.Class<?> caller) { in setCallersClassLoaderRef() argument
71 java.lang.String name, java.lang.String resourceBundleName, java.lang.Class<?> caller) { in demandLogger() argument
/libcore/ojluni/annotations/hiddenapi/java/lang/
DClassLoader.java175 static java.lang.ClassLoader getClassLoader(java.lang.Class<?> caller) { in getClassLoader() argument

12