Searched defs:poller (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/solaris/native/sun/nio/ch/ |
H A D | SocketChannelImpl.c | 57 struct pollfd poller; local 59 poller.revents = 1; 61 poller.fd = fd; 62 poller.events = POLLOUT; 63 poller.revents = 0; 64 result = poll(&poller, 1, block ? -1 : 0); 73 if (poller.revents) {
|
/openjdk7/jdk/src/share/classes/sun/nio/fs/ |
H A D | PollingWatchService.java | 237 private ScheduledFuture<?> poller; field in class:PollingWatchService.PollingWatchKey 291 this.poller = scheduledExecutor 299 if (poller != null) 300 poller.cancel(false);
|
/openjdk7/jdk/src/windows/classes/sun/nio/fs/ |
H A D | WindowsWatchService.java | 47 private final Poller poller; field in class:WindowsWatchService 61 this.poller = new Poller(fs, this, port); 62 this.poller.start(); 71 // delegate to poller 72 return poller.register(path, events, modifiers); 77 // delegate to poller 78 poller.close(); 194 // delegate to poller 195 poller.cancel(this);
|
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/ |
H A D | LinuxWatchService.java | 53 private final Poller poller; field in class:LinuxWatchService 76 this.poller = new Poller(fs, this, ifd, sp); 77 this.poller.start(); 86 // delegate to poller 87 return poller.register(dir, events, modifiers); 92 // delegate to poller 93 poller.close(); 134 // delegate to poller 135 ((LinuxWatchService)watcher()).poller.cancel(this);
|
H A D | SolarisWatchService.java | 95 private final Poller poller; field in class:SolarisWatchService 105 this.poller = new Poller(fs, this, port); 106 this.poller.start(); 115 // delegate to poller 116 return poller.register(dir, events, modifiers); 121 // delegate to poller 122 poller.close(); 140 // poller thread. 188 // delegate to poller 189 poller [all...] |
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/ |
H A D | SunPKCS11.java | 90 private TokenPoller poller; field in class:SunPKCS11 736 // create the poller thread, if not already active 738 if (poller != null) { 741 TokenPoller poller = new TokenPoller(this); 742 Thread t = new Thread(poller, "Poller " + getName()); 746 this.poller = poller; 749 // destroy the poller thread, if active 751 if (poller != null) { 752 poller [all...] |
Completed in 1172 milliseconds