Searched defs:fdToKey (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DDevPollSelectorImpl.java50 private Map<Integer,SelectionKeyImpl> fdToKey; field in class:DevPollSelectorImpl
73 fdToKey = new HashMap<Integer,SelectionKeyImpl>();
111 SelectionKeyImpl ski = fdToKey.get(Integer.valueOf(nextFD));
164 fdToKey.put(Integer.valueOf(fd), ski);
172 fdToKey.remove(Integer.valueOf(fd));
H A DEPollSelectorImpl.java50 private Map<Integer,SelectionKeyImpl> fdToKey; field in class:EPollSelectorImpl
70 fdToKey = new HashMap<>();
106 SelectionKeyImpl ski = fdToKey.get(Integer.valueOf(nextFD));
163 fdToKey.put(fd, ski);
172 fdToKey.remove(Integer.valueOf(fd));
H A DEventPortSelectorImpl.java45 private Map<Integer,SelectionKeyImpl> fdToKey; field in class:EventPortSelectorImpl
61 fdToKey = new HashMap<>();
89 SelectionKeyImpl ski = fdToKey.get(Integer.valueOf(nextFD));
135 fdToKey.put(Integer.valueOf(fd), ski);
143 fdToKey.remove(Integer.valueOf(fd));

Completed in 39 milliseconds