Searched refs:Poller (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/make/mkdemo/jni/
H A DMakefile37 SUBDIRS += Poller
/openjdk7/jdk/make/mkdemo/jni/Poller/
H A DMakefile27 # Build Poller class demo.
32 DEMONAME = Poller
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPollingServer.java46 * Simple Java "server" using the Poller class
83 Poller Mux;
93 * Create the Poller object Mux, allow for up to MAXCONN
96 Mux = new Poller(MAXCONN);
97 serverFd = Mux.add(skMain, Poller.POLLIN);
157 if (revents[cnt] == Poller.POLLIN) {
166 int fdval = Mux.add(sockArr[connects], Poller.POLLIN);
210 concurrency = Poller.getNumCPUs() + 1;
H A DPoller.java64 public class Poller { class
82 * creation or destruction of Poller objects.
87 * The handle for a Poller Object...is used in the JNI C code
93 * Constructs an instance of a <code>Poller</code> object.
95 * many fd/skt objects this Poller object can contain.
97 public Poller() throws Exception { method in class:Poller
104 * Constructs an instance of a <code>Poller</code> object.
106 * this Poller object can contain.
108 public Poller(int maxFd) throws Exception { method in class:Poller
128 * this Poller objec
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java47 private final Poller poller;
61 this.poller = new Poller(fs, this, port);
244 private class Poller extends AbstractPoller { class in class:WindowsWatchService
286 Poller(WindowsFileSystem fs, WindowsWatchService watcher, long port) { method in class:WindowsWatchService.Poller
515 * Poller main loop
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxWatchService.java53 private final Poller poller;
76 this.poller = new Poller(fs, this, ifd, sp);
143 private static class Poller extends AbstractPoller { class in class:LinuxWatchService
185 Poller(UnixFileSystem fs, LinuxWatchService watcher, int ifd, int[] sp) { method in class:LinuxWatchService.Poller
302 * Poller main loop
H A DSolarisWatchService.java95 private final Poller poller;
105 this.poller = new Poller(fs, this, port);
216 private class Poller extends AbstractPoller { class in class:SolarisWatchService
246 Poller(UnixFileSystem fs, SolarisWatchService watcher, int port) { method in class:SolarisWatchService.Poller
372 * Poller main loop. Blocks on port_getn waiting for events and then

Completed in 219 milliseconds