Searched refs:sites (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMutableCallSite.java168 * loaded from the target of any of the call sites.
190 * If possible, it should be buffered for batch processing on sets of call sites.
192 * If {@code sites} contains a null element,
202 * that may access one of the affected call sites.
252 * on a single call site, but rather applies to a set of call sites.
260 * several sites has the same formal effect as many calls,
261 * each on just one of the sites.
270 * @param sites an array of call sites to be synchronized
271 * @throws NullPointerException if the {@code sites} arra
274 syncAll(MutableCallSite[] sites) argument
[all...]
H A DSwitchPoint.java39 * (Indirectly, therefore, it can control any number of call sites.)
211 * private call sites.
213 * @param switchPoints an array of call sites to be synchronized
219 MutableCallSite[] sites = new MutableCallSite[switchPoints.length];
223 sites[i] = spt.mcs;
226 MutableCallSite.syncAll(sites);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A DREADME.txt82 are requesting, e.g. if heap=sites or heap=all is requested, the
91 the hprof code. Depending on whether heap=sites or heap=dump
93 objects, or unique allocation sites for types of objects.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDropTargetRegistry.java40 * The class responsible for registration/deregistration of drop sites.
98 private final List<Long> sites = new ArrayList<Long>(); field in class:XDropTargetRegistry.EmbeddedDropSiteEntry
121 if (!sites.contains(lWindow)) {
122 sites.add(lWindow);
130 sites.remove(lWindow);
140 return !sites.isEmpty();
143 long[] ret = new long[sites.size()];
144 Iterator iter = sites.iterator();
155 Iterator<Long> iter = sites.iterator();
306 // No need to update our own drop sites
[all...]

Completed in 35 milliseconds