HomeSort by relevance Sort by last modified time
    Searched defs:mChannel (Results 1 - 15 of 15) sorted by null

  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 71 private final int mChannel;
84 mChannel = port;
142 return mChannel;
  /hardware/ril/mock-ril/src/java/com/android/internal/telephony/
RilChannel.java 31 private SocketChannel mChannel = null;
47 mChannel= SocketChannel.open(mockRilAddr);
69 if (mChannel != null) {
70 mChannel.close();
83 return mChannel;
96 count += mChannel.write(bb);
111 count += mChannel.read(bb);
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 27 private ChannelSystem.Channel mChannel;
42 mChannel = null;
62 if (mChannel != null) {
65 mChannel.value = mLastPressedTime;
79 mChannel = channel;
DoorAnimationComponent.java 41 private ChannelSystem.Channel mChannel;
57 mChannel = null;
138 if (mChannel != null) {
139 if (mChannel.value != null && mChannel.value instanceof ChannelSystem.ChannelFloatValue) {
140 final float lastPressedTime = ((ChannelSystem.ChannelFloatValue)mChannel.value).value;
184 mChannel = channel;
NPCAnimationComponent.java 44 private ChannelSystem.Channel mChannel;
60 mChannel = null;
107 if (mChannel != null) {
108 if (mChannel.value != null
109 && ((ChannelSystem.ChannelBooleanValue)mChannel.value).value) {
373 mChannel = channel;
TheSourceComponent.java 33 private ChannelSystem.Channel mChannel;
51 mChannel = null;
77 if (mChannel != null) {
78 mChannel.value = sChannelValue;
142 mChannel = channel;
  /frameworks/base/services/sensorservice/
SensorService.h 79 sp<SensorChannel> const mChannel;
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pEnabler.java 42 private WifiP2pManager.Channel mChannel;
62 mChannel = mWifiP2pManager.initialize(mContext, mContext.getMainLooper(), null);
63 if (mChannel == null) {
95 mWifiP2pManager.enableP2p(mChannel);
97 mWifiP2pManager.disableP2p(mChannel);
WifiP2pSettings.java 71 private WifiP2pManager.Channel mChannel;
95 mWifiP2pManager.requestPeers(mChannel, WifiP2pSettings.this);
126 mChannel = mWifiP2pManager.initialize(activity, getActivity().getMainLooper(), null);
127 if (mChannel == null) {
143 mWifiP2pManager.connect(mChannel, config,
163 mWifiP2pManager.removeGroup(mChannel, new WifiP2pManager.ActionListener() {
184 mWifiP2pManager.discoverPeers(mChannel, new WifiP2pManager.ActionListener() {
219 mWifiP2pManager.discoverPeers(mChannel, new WifiP2pManager.ActionListener() {
231 mWifiP2pManager.createGroup(mChannel, new WifiP2pManager.ActionListener() {
243 mWifiP2pManager.removeGroup(mChannel, new WifiP2pManager.ActionListener()
    [all...]
  /frameworks/base/media/java/android/media/
MiniThumbFile.java 53 private FileChannel mChannel;
125 mChannel = mMiniThumbFile.getChannel();
161 lock = mChannel.lock(pos, 1 + 8, true);
164 if (mChannel.read(mBuffer, pos) == 9) {
208 lock = mChannel.lock(pos, BYTES_PER_MINTHUMB, false);
209 mChannel.write(mBuffer, pos);
244 lock = mChannel.lock(pos, BYTES_PER_MINTHUMB, true);
245 int size = mChannel.read(mBuffer, pos);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Debugger.java 59 private SocketChannel mChannel;
90 return mChannel != null;
98 // mChannel != null means we have connection, ST_READY means it's going
120 * Must be synchronized with other uses of mChannel and mPreBuffer.
133 * Must be synchronized with other uses of mChannel and mPreBuffer.
144 if (mChannel != null) {
150 mChannel = newChan;
151 mChannel.configureBlocking(false); // required for Selector
153 return mChannel;
164 if (mChannel != null)
    [all...]
SyncService.java 132 private SocketChannel mChannel;
159 mChannel = SocketChannel.open(mAddress);
160 mChannel.configureBlocking(false);
163 AdbHelper.setDevice(mChannel, mDevice);
166 AdbHelper.write(mChannel, request, -1, DdmPreferences.getTimeOut());
168 AdbResponse resp = AdbHelper.readAdbResponse(mChannel, false /* readDiagString */);
172 mChannel.close();
173 mChannel = null;
177 if (mChannel != null) {
179 mChannel.close()
    [all...]
  /frameworks/base/core/java/android/view/
InputQueue.java 49 final InputChannel mChannel;
60 mChannel = channel;
65 return mChannel;
  /frameworks/base/include/ui/
InputTransport.h 179 inline sp<InputChannel> getChannel() { return mChannel; }
264 sp<InputChannel> mChannel;
295 inline sp<InputChannel> getChannel() { return mChannel; }
327 sp<InputChannel> mChannel;
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 1060 milliseconds