Searched defs:clientList (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIServerImpl.java254 synchronized (clientList) {
255 clientList.add(wr);
260 synchronized (clientList) {
261 if (!clientList.contains(wr)) {
345 synchronized (clientList) {
347 for (Iterator<WeakReference<RMIConnection>> it = clientList.iterator();
417 synchronized (clientList) {
421 if (debug) logger.debug("close","client count: "+clientList.size());
422 if (clientList.size() == 0)
428 for (Iterator<WeakReference<RMIConnection>> it = clientList
537 private final List<WeakReference<RMIConnection>> clientList = field in class:RMIServerImpl
[all...]
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DSelectorTest.java38 private static List clientList = new LinkedList(); field in class:SelectorTest
119 clientList.add(new RemoteEntity(i, isa, log));
121 Collections.shuffle(clientList);
125 for (Iterator i = clientList.iterator(); i.hasNext(); ) {
131 Collections.shuffle(clientList);
132 } while (clientList.size() > 0);

Completed in 49 milliseconds