Home
last modified time | relevance | path

Searched refs:newClient (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
DBluetoothScanner.java203 ClientRecord newClient = new ClientRecord(listener, matchers); in startListening() local
212 mClients.add(newClient); in startListening()
233 for (BluetoothDeviceCriteria matcher : newClient.matchers) { in startListening()
235 newClient.devices.add(target); in startListening()
236 newClient.listener.onDeviceAdded(target); in startListening()
/packages/services/Car/service/src/com/android/car/
DInputCaptureClientController.java319 ClientInfoForDisplay newClient = new ClientInfoForDisplay(Binder.getCallingUid(), in requestInputEventCapture() local
323 newClient.linkToDeath(); in requestInputEventCapture()
361 fullCapturersStack.addFirst(newClient); in requestInputEventCapture()
405 newClient.mGrantedTypes.add(inputType); in requestInputEventCapture()
407 perInputStack.addFirst(newClient); in requestInputEventCapture()
416 if (topStackClient == newClient) { in requestInputEventCapture()
427 allClientsForDisplay.put(clientBinder, newClient); in requestInputEventCapture()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApManager.java961 private boolean checkSoftApClient(SoftApConfiguration config, WifiClient newClient) { in checkSoftApClient() argument
967 if (mBlockedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
968 Log.d(getTag(), "Force disconnect for client: " + newClient + "in blocked list"); in checkSoftApClient() local
970 mApInterfaceName, newClient.getMacAddress(), in checkSoftApClient()
972 addClientToPendingDisconnectionList(newClient, in checkSoftApClient()
978 && !mAllowedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
979 mSoftApCallback.onBlockedClientConnecting(newClient, in checkSoftApClient()
981 Log.d(getTag(), "Force disconnect for unauthorized client: " + newClient); in checkSoftApClient() local
983 mApInterfaceName, newClient.getMacAddress(), in checkSoftApClient()
985 addClientToPendingDisconnectionList(newClient, in checkSoftApClient()
[all …]