Lines Matching defs:entries
123 // attributes of the entries in the directory.
226 * WatchKey implementation that encapsulates a map of the entries of the
227 * entries in the directory. Polling the key causes it to re-scan the
228 * directory and queue keys when entries are added, modified, or deleted.
245 // map of entries in directory
246 private Map<Path,CacheEntry> entries;
255 this.entries = new HashMap<Path,CacheEntry>();
257 // get the initial entries in the directory
263 entries.put(entry.getFileName(), new CacheEntry(lastModified, tickCount));
336 // iterate over all entries in directory
351 CacheEntry e = entries.get(entry.getFileName());
354 entries.put(entry.getFileName(),
397 // iterate over cache to detect entries that have been deleted
398 Iterator<Map.Entry<Path,CacheEntry>> i = entries.entrySet().iterator();