Searched refs:caller (Results 1 - 19 of 19) sorted by relevance

/libcore/ojluni/src/main/java/javax/sql/
H A DRowSetReader.java52 * <P>The <code>readData</code> method adds rows to the caller.
54 * populate the caller with rows from a nonrelational data source.
65 * @param caller the <code>RowSet</code> object (1) that has implemented the
71 void readData(RowSetInternal caller) throws SQLException; argument
H A DRowSetWriter.java55 * @param caller the <code>RowSet</code> object (1) that has implemented the
62 boolean writeData(RowSetInternal caller) throws SQLException; argument
/libcore/ojluni/src/main/java/java/security/acl/
H A DOwner.java43 * Adds an owner. Only owners can modify ACL contents. The caller
48 * @param caller the principal invoking this method. It must be an owner
54 * @exception NotOwnerException if the caller principal is not an owner
57 public boolean addOwner(Principal caller, Principal owner) argument
64 * The caller principal must be an owner of the ACL in order to invoke
67 * @param caller the principal invoking this method. It must be an owner
75 * @exception NotOwnerException if the caller principal is not an owner
81 public boolean deleteOwner(Principal caller, Principal owner) argument
H A DAcl.java96 * @param caller the principal invoking this method. It must be an
101 * @exception NotOwnerException if the caller principal
106 public void setName(Principal caller, String name) argument
127 * @param caller the principal invoking this method. It must be an
136 * @exception NotOwnerException if the caller principal
139 public boolean addEntry(Principal caller, AclEntry entry) argument
145 * @param caller the principal invoking this method. It must be an
152 * @exception NotOwnerException if the caller principal is not
155 public boolean removeEntry(Principal caller, AclEntry entry) argument
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DLambdaMetafactory.java36 public static CallSite metafactory(MethodHandles.Lookup caller, argument
44 public static CallSite altMetafactory(MethodHandles.Lookup caller, argument
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java52 * or the field is inaccessible to the caller according to Java language
58 Class<?> caller = VMStack.getStackClass1(); // android-changed
60 return new CASUpdater<U>(tclass, fieldName, caller);
62 return new LockedUpdater<U>(tclass, fieldName, caller);
352 final Class<?> caller) {
360 // caller, tclass, null, modifiers);
362 // ClassLoader ccl = caller.getClassLoader();
382 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass;
482 final Class<?> caller) {
490 // caller, tclas
351 CASUpdater(final Class<T> tclass, final String fieldName, final Class<?> caller) argument
481 LockedUpdater(final Class<T> tclass, final String fieldName, final Class<?> caller) argument
[all...]
H A DAtomicIntegerFieldUpdater.java52 * or the field is inaccessible to the caller according to Java language
354 final Class<?> caller) {
367 // caller, tclass, null, modifiers);
369 // ClassLoader ccl = caller.getClassLoader();
389 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass;
352 AtomicIntegerFieldUpdaterImpl(final Class<T> tclass, final String fieldName, final Class<?> caller) argument
H A DAtomicReferenceFieldUpdater.java73 * or the field is inaccessible to the caller according to Java language
286 final Class<?> caller) {
295 // caller, tclass, null, modifiers);
297 // ClassLoader ccl = caller.getClassLoader();
320 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass;
283 AtomicReferenceFieldUpdaterImpl(final Class<T> tclass, final Class<V> vclass, final String fieldName, final Class<?> caller) argument
/libcore/luni/src/main/java/java/util/concurrent/
H A DCountedCompleter.java283 * public void onCompletion(CountedCompleter<?> caller) {
284 * if (caller != this) {
285 * MapReducer<E> child = (MapReducer<E>)caller;
307 * decrement the pending count to zero. The {@code caller} argument
308 * distinguishes cases. Most often, when the caller is {@code this},
309 * no action is necessary. Otherwise the caller argument can be used
373 * public void onCompletion(CountedCompleter<?> caller) { sendPacket(); }
432 * identity of the given caller argument. If not equal to {@code
436 * @param caller the task invoking this method (which may
439 public void onCompletion(CountedCompleter<?> caller) { argument
460 onExceptionalCompletion(Throwable ex, CountedCompleter<?> caller) argument
[all...]
/libcore/ojluni/src/main/java/java/util/stream/
H A DAbstractTask.java64 * public void onCompletion(CountedCompleter caller) {
329 public void onCompletion(CountedCompleter<?> caller) { argument
H A DFindOps.java302 public void onCompletion(CountedCompleter<?> caller) { argument
314 super.onCompletion(caller);
H A DReduceOps.java751 public void onCompletion(CountedCompleter<?> caller) { argument
758 super.onCompletion(caller);
H A DSliceOps.java622 public final void onCompletion(CountedCompleter<?> caller) { argument
646 super.onCompletion(caller);
H A DForEachOps.java51 * {@code Consumer} will be relayed to the caller and traversal will be
487 public void onCompletion(CountedCompleter<?> caller) { argument
H A DNodes.java2187 public void onCompletion(CountedCompleter<?> caller) { argument
2190 super.onCompletion(caller);
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogger.java264 Logger(String name, String resourceBundleName, Class<?> caller) { argument
266 setupResourceInfo(resourceBundleName, caller);
271 private void setCallersClassLoaderRef(Class<?> caller) { argument
272 ClassLoader callersClassLoader = ((caller != null)
273 ? caller.getClassLoader()
315 // As an interim solution, if the immediate caller whose caller loader is
336 private static Logger demandLogger(String name, String resourceBundleName, Class<?> caller) { argument
340 if (caller.getClassLoader() == null) {
344 return manager.demandLogger(name, resourceBundleName, caller);
[all...]
H A DLogManager.java312 * the caller does not have LoggingPermission("control").
335 * the caller does not have LoggingPermission("control").
368 Logger demandLogger(String name, String resourceBundleName, Class<?> caller) { argument
372 Logger newLogger = new Logger(name, resourceBundleName, caller);
992 * is no strong reference to the Logger. The caller of this method
1012 * to {@code LogManager.getLogger()}, then the caller must check the
1036 * the caller does not have LoggingPermission("control").
1099 * the caller does not have LoggingPermission("control").
1185 * the caller does not have LoggingPermission("control").
1360 * the caller doe
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCountedCompleterTest.java231 public void onCompletion(CountedCompleter caller) { argument
233 super.onCompletion(caller);
236 CountedCompleter caller) {
240 assertTrue(super.onExceptionalCompletion(ex, caller));
552 public final void onCompletion(CountedCompleter caller) { argument
553 super.onCompletion(caller);
566 public final void onCompletion(CountedCompleter caller) { argument
567 super.onCompletion(caller);
603 public final void onCompletion(CountedCompleter caller) { argument
604 super.onCompletion(caller);
235 onExceptionalCompletion(Throwable ex, CountedCompleter caller) argument
617 onCompletion(CountedCompleter caller) argument
[all...]
H A DForkJoinPool8Test.java895 public final void onCompletion(CountedCompleter caller) { argument
908 public final void onCompletion(CountedCompleter caller) { argument
949 public final void onCompletion(CountedCompleter caller) { argument
962 public final void onCompletion(CountedCompleter caller) { argument

Completed in 499 milliseconds