Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesGeneralTest.java316 Lookup specialLookup = maybeMoveIn(lookup, specialCaller); in testFindSpecial() local
317 boolean specialAccessOK = (specialLookup.lookupClass() == specialCaller && in testFindSpecial()
318 (specialLookup.lookupModes() & Lookup.PRIVATE) != 0); in testFindSpecial()
323 if (verbosity >= 5) System.out.println(" lookup => "+specialLookup); in testFindSpecial()
324 target = specialLookup.findSpecial(defc, methodName, type, specialCaller); in testFindSpecial()
509 Lookup specialLookup = (specialCaller != null ? maybeMoveIn(lookup, specialCaller) : null); in testUnreflectMaybeSpecial() local
511 specialLookup.lookupClass() == specialCaller && in testUnreflectMaybeSpecial()
512 (specialLookup.lookupModes() & Lookup.PRIVATE) != 0); in testUnreflectMaybeSpecial()
521 target = specialLookup.unreflectSpecial(rmethod, specialCaller); in testUnreflectMaybeSpecial()