Home
last modified time | relevance | path

Searched refs:Channel (Results 1 – 8 of 8) sorted by relevance

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
DPsdFile.java292 final Channel[] mChannelInfo = new Channel[mChannelCount];
321 mChannelInfo[0] = new Channel(Channel.ID_ALPHA, length); in Layer()
322 mChannelInfo[1] = new Channel(Channel.ID_RED, length); in Layer()
323 mChannelInfo[2] = new Channel(Channel.ID_GREEN, length); in Layer()
324 mChannelInfo[3] = new Channel(Channel.ID_BLUE, length); in Layer()
366 for (Channel channel : mChannelInfo) { in getLength()
386 for (Channel channel : mChannelInfo) { in write()
418 static class Channel { class in PsdFile
428 Channel(short id, int dataLength) { in Channel() method in PsdFile.Channel
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
DConnection.java29 import com.android.tools.sdkcontroller.lib.Channel;
99 private List<Channel> mChannels = new ArrayList<Channel>();
156 for (Channel channel : mChannels) { in disconnect()
173 public boolean registerChannel(Channel channel) { in registerChannel()
174 for (Channel check_channel : mChannels) { in registerChannel()
202 for (Channel channel : mChannels) { in isEmulatorConnected()
217 public Channel getChannel(String name) { in getChannel()
218 for (Channel channel : mChannels) { in getChannel()
361 final Channel channel = getChannel(channel_name); in onAccept()
DChannel.java55 public abstract class Channel { class
237 public Channel(ControllerService service, String name) { in Channel() method in Channel
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
DMultiTouchChannel.java23 import com.android.tools.sdkcontroller.lib.Channel;
32 public class MultiTouchChannel extends Channel {
58 super(service, Channel.MULTITOUCH_CHANNEL); in MultiTouchChannel()
DSensorChannel.java32 import com.android.tools.sdkcontroller.lib.Channel;
39 public class SensorChannel extends Channel {
83 super(service, Channel.SENSOR_CHANNEL); in SensorChannel()
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/service/
DControllerService.java37 import com.android.tools.sdkcontroller.lib.Channel;
168 public Channel getChannel(String name) { in getChannel()
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
DSensorActivity.java40 import com.android.tools.sdkcontroller.lib.Channel;
176 mSensorHandler = (SensorChannel) getServiceBinder().getChannel(Channel.SENSOR_CHANNEL); in createSensorUi()
DMultiTouchActivity.java34 import com.android.tools.sdkcontroller.lib.Channel;
105 mHandler = (MultiTouchChannel) getServiceBinder().getChannel(Channel.MULTITOUCH_CHANNEL); in onServiceConnected()