Searched defs:clients (Results 1 - 2 of 2) sorted by relevance

/packages/services/Car/vehicle_network_service/
H A DVehicleNetworkService.cpp232 msg.append("*Active clients*\n");
237 msg.append("*Active clients per property*\n");
240 sp<HalClientSpVector> clients = mPropertyToClientsMap.valueAt(i); local
241 for (size_t j = 0; j < clients->size(); j++) {
242 msg.appendFormat("%d,", clients->itemAt(j)->getPid());
288 sp<HalClientSpVector> clients = mPropertyToClientsMap.editValueAt(i); local
289 clients->clear();
313 sp<HalClientSpVector>& clients = mPropertyToClientsMap.editValueAt(i); local
314 clients->remove(currentClient);
316 if (clients
1019 sp<HalClientSpVector>& clients = mPropertyToClientsMap.editValueAt(index); local
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanManager.java133 * Returns a set of full batch scan clients.
136 // TODO: split full batch scan clients and truncated batch clients so we don't need to
398 // Keep track of the clients that uses ALL_PASS filters.
849 private void removeFilterIfExisits(Set<Integer> clients, int clientIf, int filterIndex) { argument
850 if (!clients.contains(clientIf)) {
853 clients.remove(clientIf);
855 if (clients.isEmpty()) {
1118 // Note this effectively remove scan filters for ALL clients.

Completed in 68 milliseconds