Searched defs:mAsyncChannel (Results 1 - 6 of 6) sorted by last modified time

/frameworks/base/wifi/java/android/net/wifi/
H A DRttManager.java932 mAsyncChannel.sendMessage(CMD_OP_START_RANGING,
938 mAsyncChannel.sendMessage(CMD_OP_STOP_RANGING, 0, removeListener(listener));
975 mAsyncChannel.sendMessage(CMD_OP_ENABLE_RESPONDER, 0, key);
998 mAsyncChannel.sendMessage(CMD_OP_DISABLE_RESPONDER, 0, key);
1120 private AsyncChannel mAsyncChannel; field in class:RttManager
1148 mAsyncChannel = new AsyncChannel();
1151 mAsyncChannel.connectSync(mContext, handler, messenger);
1154 mAsyncChannel.sendMessage(AsyncChannel.CMD_CHANNEL_FULL_CONNECTION);
1158 if (mAsyncChannel == null) throw new IllegalStateException(
1243 mAsyncChannel
[all...]
H A DWifiManager.java678 private AsyncChannel mAsyncChannel; field in class:WifiManager
1869 mAsyncChannel.sendMessage(AsyncChannel.CMD_CHANNEL_FULL_CONNECTION);
1874 mAsyncChannel = null;
1885 mAsyncChannel = null;
1979 if (mAsyncChannel == null) {
1986 mAsyncChannel = new AsyncChannel();
1990 mAsyncChannel.connect(mContext, handler, messenger);
1997 return mAsyncChannel;
2596 if (mAsyncChannel != null) {
2597 mAsyncChannel
[all...]
H A DWifiScanner.java692 mAsyncChannel.sendMessage(CMD_REGISTER_SCAN_LISTENER, 0, key);
706 mAsyncChannel.sendMessage(CMD_DEREGISTER_SCAN_LISTENER, 0, key);
737 mAsyncChannel.sendMessage(CMD_START_BACKGROUND_SCAN, 0, key, scanParams);
750 mAsyncChannel.sendMessage(CMD_STOP_BACKGROUND_SCAN, 0, key);
758 Message reply = mAsyncChannel.sendMessageSynchronously(CMD_GET_SCAN_RESULTS, 0);
791 mAsyncChannel.sendMessage(CMD_START_SINGLE_SCAN, 0, key, scanParams);
804 mAsyncChannel.sendMessage(CMD_STOP_SINGLE_SCAN, 0, key);
814 mAsyncChannel.sendMessage(CMD_START_PNO_SCAN, 0, key, pnoParams);
870 mAsyncChannel.sendMessage(CMD_STOP_PNO_SCAN, 0, key);
1006 mAsyncChannel
1196 private AsyncChannel mAsyncChannel; field in class:WifiScanner
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java666 mAsyncChannel = new AsyncChannel();
681 private AsyncChannel mAsyncChannel; field in class:WifiP2pManager.Channel
903 if (c.mAsyncChannel.connectSync(srcContext, c.mHandler, messenger)
932 c.mAsyncChannel.sendMessage(DISCOVER_PEERS, 0, c.putListener(listener));
948 c.mAsyncChannel.sendMessage(STOP_DISCOVERY, 0, c.putListener(listener));
976 c.mAsyncChannel.sendMessage(CONNECT, 0, c.putListener(listener), config);
992 c.mAsyncChannel.sendMessage(CANCEL_CONNECT, 0, c.putListener(listener));
1016 c.mAsyncChannel.sendMessage(CREATE_GROUP, WifiP2pGroup.PERSISTENT_NET_ID,
1033 c.mAsyncChannel.sendMessage(REMOVE_GROUP, 0, c.putListener(listener));
1039 c.mAsyncChannel
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkAgent.java49 private volatile AsyncChannel mAsyncChannel; field in class:NetworkAgent
233 if (mAsyncChannel != null) {
242 mAsyncChannel = ac;
253 if (mAsyncChannel != null) mAsyncChannel.disconnect();
261 mAsyncChannel = null;
350 if (mAsyncChannel != null) {
351 mAsyncChannel.sendMessage(msg);
/frameworks/base/core/java/android/net/nsd/
H A DNsdManager.java220 private final AsyncChannel mAsyncChannel = new AsyncChannel(); field in class:NsdManager
305 mAsyncChannel.sendMessage(AsyncChannel.CMD_CHANNEL_FULL_CONNECTION);
443 mAsyncChannel.connect(mContext, mHandler, messenger);
487 mAsyncChannel.sendMessage(REGISTER_SERVICE, 0, key, serviceInfo);
511 mAsyncChannel.sendMessage(UNREGISTER_SERVICE, 0, id);
562 mAsyncChannel.sendMessage(DISCOVER_SERVICES, 0, key, s);
589 mAsyncChannel.sendMessage(STOP_DISCOVERY, 0, id);
615 mAsyncChannel.sendMessage(RESOLVE_SERVICE, 0, key, serviceInfo);

Completed in 159 milliseconds