HomeSort by relevance Sort by last modified time
    Searched refs:totalChannels (Results 1 - 8 of 8) sorted by null

  /libcore/ojluni/src/main/java/sun/nio/ch/
AbstractPollSelectorImpl.java 56 protected int totalChannels;
66 this.totalChannels = channels;
91 for(int i=channelOffset; i<totalChannels; i++) {
105 totalChannels = 0;
119 for (int i=channelOffset; i<totalChannels; i++) {
146 if (channelArray.length == totalChannels) {
148 int newSize = pollWrapper.totalChannels * 2;
151 for (int i=channelOffset; i<totalChannels; i++)
157 channelArray[totalChannels] = ski;
158 ski.setIndex(totalChannels);
    [all...]
PollArrayWrapper.java 53 totalChannels = 1;
75 putDescriptor(totalChannels, IOUtil.fdVal(sc.getFD()));
76 putEventOps(totalChannels, 0);
77 putReventOps(totalChannels, 0);
78 totalChannels++;
105 for (int i=0; i<totalChannels; i++)
AbstractPollArrayWrapper.java 50 protected int totalChannels = 0;
PollSelectorImpl.java 73 pollWrapper.poll(totalChannels, 0, timeout);
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbACMixerUnit.java 48 int totalChannels = numInputs * numOutputs;
49 return (totalChannels + 7) / 8;
  /external/aac/libAACenc/src/
psy_main.h 157 INT *chIdx, INT totalChannels);
psy_main.cpp 412 INT *chIdx, INT totalChannels) {
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 58 private int totalChannels = 0;
96 } else if (totalChannels < concurrencyLevel) {
97 totalChannels++; // Create a new channel. (outside of the synchronized block).
116 int activeChannels = totalChannels - freeChannels.size();

Completed in 168 milliseconds