Lines Matching refs:client

137                     ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
138 if (client != null) {
139 logw("duplicate client connection: " + msg.sendingUid);
140 client.mChannel.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED,
148 client = new ExternalClientInfo(msg.sendingUid, msg.replyTo, ac);
149 client.register();
154 if (DBG) Log.d(TAG, "client connected: " + client);
158 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
159 if (client != null) {
160 client.mChannel.disconnect();
165 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
166 if (client != null) {
168 Log.d(TAG, "client disconnected: " + client + ", reason: " + msg.arg1);
170 client.cleanup();
193 loge("Could not find client info for message " + msg.replyTo);
1325 * contains IE (information elements). If yes, send the results to the client, else
1326 * switch to |Single Scan state| and send the result to the client when the scan result
1331 * b.2. In |Sw Pno Scan state| send the result to the client when the background scan result
1334 * Note: PNO scans only work for a single client today. We don't have support in HW to support
1656 Log.w(TAG, "No Internal client for PNO");
1666 Log.w(TAG, "Internal client for PNO already exists");
1783 * client
1809 * Register this client to main client map.
1816 * Unregister this client from main client map.
1827 localLog("Successfully stopped all requests for client " + this);
1904 * Indicates if the client is still connected
1905 * If the client is no longer connected then messages to it will be silently dropped
1912 if (DBG) localLog("New client, channel: " + c);
1926 // only for external client because this will otherwise cause an infinite recursion
1927 // when the internal client in WifiChangeStateMachine is cleaned up.
1965 * Send a message to the client handler which should reroute the message to the appropriate
1985 * Send a message to the client handler which should reroute the message to the appropriate
2399 // Add an internal client to make background scan requests.
2417 // Remove the internal client when there are no more external clients.
2486 for (ClientInfo client : mClients.values()) {
2487 pw.println(" " + client);
2490 for (ClientInfo client : mClients.values()) {
2492 mBackgroundScanStateMachine.getBackgroundScanSettings(client);
2494 pw.println(" " + toString(client.mUid, settings));