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

/libcore/luni/src/main/java/java/security/acl/
H A DOwner.java33 * @param caller
41 boolean addOwner(Principal caller, Principal owner) argument
47 * @param caller
58 boolean deleteOwner(Principal caller, Principal owner) argument
H A DAcl.java56 * @param caller
64 void setName(Principal caller, String name) throws NotOwnerException; argument
79 * @param caller
89 boolean addEntry(Principal caller, AclEntry entry) throws NotOwnerException; argument
94 * @param caller
104 boolean removeEntry(Principal caller, AclEntry entry) argument
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java45 * or the field is inaccessible to the caller according to Java language
248 final Class<?> caller;
252 caller = VMStack.getStackClass2(); // android-changed
256 // caller, tclass, null, modifiers);
258 // ClassLoader ccl = caller.getClassLoader();
280 caller != tclass) ? caller : null;
342 Class<?> caller = null;
346 caller = VMStack.getStackClass2(); // android-changed
350 // caller, tclas
[all...]
H A DAtomicIntegerFieldUpdater.java45 * or the field is inaccessible to the caller according to Java language
248 final Class<?> caller;
252 caller = VMStack.getStackClass2(); // android-changed
257 // caller, tclass, null, modifiers);
259 // ClassLoader ccl = caller.getClassLoader();
281 caller != tclass) ? caller : null;
H A DAtomicReferenceFieldUpdater.java63 * or the field is inaccessible to the caller according to Java language
180 final Class<?> caller;
184 caller = VMStack.getStackClass2(); // android-changed
188 // caller, tclass, null, modifiers);
190 // ClassLoader ccl = caller.getClassLoader();
212 caller != tclass) ? caller : null;
/libcore/luni/src/main/java/java/util/concurrent/
H A DCountedCompleter.java281 * public void onCompletion(CountedCompleter<?> caller) {
282 * if (caller != this) {
283 * MapReducer<E> child = (MapReducer<E>)caller;
305 * decrement the pending count to zero. The {@code caller} argument
306 * distinguishes cases. Most often, when the caller is {@code this},
307 * no action is necessary. Otherwise the caller argument can be used
371 * 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/jsr166-tests/src/test/java/jsr166/
H A DCountedCompleterTest.java224 public void onCompletion(CountedCompleter caller) { argument
226 super.onCompletion(caller);
229 CountedCompleter caller) {
233 assertTrue(super.onExceptionalCompletion(ex, caller));
524 public final void onCompletion(CountedCompleter caller) { argument
525 super.onCompletion(caller);
538 public final void onCompletion(CountedCompleter caller) { argument
539 super.onCompletion(caller);
575 public final void onCompletion(CountedCompleter caller) { argument
576 super.onCompletion(caller);
228 onExceptionalCompletion(Throwable ex, CountedCompleter caller) argument
589 onCompletion(CountedCompleter caller) argument
[all...]
/libcore/libart/src/main/java/java/lang/
H A DClass.java1555 Class<?> caller = VMStack.getStackClass1();
1556 if (!caller.canAccess(this)) {
1557 throw new IllegalAccessException(this + " is not accessible from " + caller);
1568 if (!caller.canAccessMember(this, init.getAccessFlags())) {
1569 throw new IllegalAccessException(init + " is not accessible from " + caller);

Completed in 123 milliseconds