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

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSocketChannelImpl.c57 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/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java47 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 DLinuxWatchService.java53 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 DSolarisWatchService.java95 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/nio/fs/
H A DPollingWatchService.java237 private ScheduledFuture<?> poller; field in class:PollingWatchService.PollingWatchKey
291 this.poller = scheduledExecutor
299 if (poller != null)
300 poller.cancel(false);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java90 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...]
/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DRemovePollRace.java145 final Runnable poller = new Runnable() {
179 pollers.add(checkedThread(poller));

Completed in 218 milliseconds