Home
last modified time | relevance | path

Searched refs:totalChannels (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DAbstractPollSelectorImpl.java56 protected int totalChannels; field in AbstractPollSelectorImpl
66 this.totalChannels = channels; in AbstractPollSelectorImpl()
91 for(int i=channelOffset; i<totalChannels; i++) { in implClose()
105 totalChannels = 0; in implClose()
119 for (int i=channelOffset; i<totalChannels; i++) { in updateSelectedKeys()
146 if (channelArray.length == totalChannels) { in implRegister()
148 int newSize = pollWrapper.totalChannels * 2; in implRegister()
151 for (int i=channelOffset; i<totalChannels; i++) in implRegister()
157 channelArray[totalChannels] = ski; in implRegister()
158 ski.setIndex(totalChannels); in implRegister()
[all …]
DPollArrayWrapper.java55 totalChannels = 1; in PollArrayWrapper()
77 putDescriptor(totalChannels, IOUtil.fdVal(sc.getFD())); in addEntry()
78 putEventOps(totalChannels, 0); in addEntry()
79 putReventOps(totalChannels, 0); in addEntry()
80 totalChannels++; in addEntry()
107 for (int i=0; i<totalChannels; i++) in grow()
DAbstractPollArrayWrapper.java58 protected int totalChannels = 0; field in AbstractPollArrayWrapper
DPollSelectorImpl.java73 pollWrapper.poll(totalChannels, 0, timeout); in doSelect()