Searched defs:fileKey (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DBasicFileAttributes.java143 Object fileKey(); method in interface:BasicFileAttributes
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileTreeWalker.java140 Object key = attrs.fileKey();
145 Object ancestorKey = ancestor.fileKey();
244 Object fileKey() { method in class:FileTreeWalker.AncestorDirectory
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileAttributes.java110 public Object fileKey() { method in class:ZipFileAttributes
156 fm.format(" fileKey : %s%n", fileKey());
H A DZipFileAttributeView.java64 fileKey, enum constant in enum:ZipFileAttributeView.AttrID
173 case fileKey:
174 return zfas.fileKey();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockTable.java89 private FileKey fileKey; field in class:SharedFileLockTable.FileLockReference
95 this.fileKey = key;
98 FileKey fileKey() { method in class:SharedFileLockTable.FileLockReference
99 return fileKey;
116 private final FileKey fileKey; field in class:SharedFileLockTable
120 this.fileKey = FileKey.create(fd);
125 List<FileLockReference> list = lockMap.get(fileKey);
134 prev = lockMap.putIfAbsent(fileKey, list);
137 list.add(new FileLockReference(fl, queue, fileKey));
150 List<FileLockReference> current = lockMap.get(fileKey);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java153 Object fileKey = attrs.fileKey();
154 if (fileKey == null)
164 watchKey = map.get(fileKey);
167 watchKey = new PollingWatchKey(path, this, fileKey);
168 map.put(fileKey, watchKey);
231 private final Object fileKey; field in class:PollingWatchService.PollingWatchKey
248 PollingWatchKey(Path dir, PollingWatchService watcher, Object fileKey) argument
252 this.fileKey = fileKey;
270 Object fileKey() { method in class:PollingWatchService.PollingWatchKey
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java86 private FileKey fileKey; field in class:WindowsWatchService.WindowsWatchKey
111 FileKey fileKey)
114 this.fileKey = fileKey;
163 FileKey fileKey() { method in class:WindowsWatchService.WindowsWatchKey
164 return fileKey;
442 fk2key.remove(key.fileKey());
109 WindowsWatchKey(Path dir, AbstractWatchService watcher, FileKey fileKey) argument
H A DWindowsFileAttributes.java424 public Object fileKey() { method in class:WindowsFileAttributes
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java159 public UnixFileKey fileKey() { method in class:UnixFileAttributes
289 public Object fileKey() { method in class:UnixFileAttributes.UnixAsBasicFileAttributes
290 return attrs.fileKey();
H A DSolarisWatchService.java131 private final UnixFileKey fileKey; field in class:SolarisWatchService.SolarisWatchKey
145 UnixFileKey fileKey,
150 this.fileKey = fileKey;
160 return fileKey;
296 UnixFileKey fileKey = attrs.fileKey();
297 SolarisWatchKey watchKey = fileKey2WatchKey.get(fileKey);
312 watchKey = new SolarisWatchKey(watcher, dir, fileKey, object, events);
314 fileKey2WatchKey.put(fileKey, watchKe
143 SolarisWatchKey(SolarisWatchService watcher, UnixPath dir, UnixFileKey fileKey, long object, Set<? extends WatchEvent.Kind<?>> events) argument
[all...]

Completed in 39 milliseconds