Lines Matching defs:SolarisWatchKey
128 private class SolarisWatchKey extends AbstractWatchKey
143 SolarisWatchKey(SolarisWatchService watcher,
238 private final Map<UnixFileKey,SolarisWatchKey> fileKey2WatchKey;
251 this.fileKey2WatchKey = new HashMap<UnixFileKey,SolarisWatchKey>();
297 SolarisWatchKey watchKey = fileKey2WatchKey.get(fileKey);
312 watchKey = new SolarisWatchKey(watcher, dir, fileKey, object, events);
325 SolarisWatchKey key = (SolarisWatchKey)obj;
358 for (Map.Entry<UnixFileKey,SolarisWatchKey> entry: fileKey2WatchKey.entrySet()) {
432 // If node is a SolarisWatchKey (DirectoryNode) then event relates
434 boolean isDirectory = (node instanceof SolarisWatchKey);
436 processDirectoryEvents((SolarisWatchKey)node, events);
467 SolarisWatchKey key = (SolarisWatchKey)node;
474 SolarisWatchKey key = (SolarisWatchKey)entry.parent();
486 void processDirectoryEvents(SolarisWatchKey key, int mask) {
498 SolarisWatchKey key = (SolarisWatchKey)node.parent();
544 SolarisWatchKey parent,
601 void updateEvents(SolarisWatchKey key, Set<? extends WatchEvent.Kind<?>> events) {