Home
last modified time | relevance | path

Searched refs:clients (Results 1 – 22 of 22) sorted by relevance

/packages/services/Car/watchdog/server/src/
DWatchdogProcessService.cpp261 std::vector<ClientInfo>& clients = mClients[timeout]; in dump() local
262 for (auto it = clients.begin(); it != clients.end(); it++, count++) { in dump()
338 std::vector<ClientInfo>& clients = mClients[timeout]; in terminate() local
339 for (auto it = clients.begin(); it != clients.end();) { in terminate()
342 it = clients.erase(it); in terminate()
358 [&](std::vector<ClientInfo>& clients, in binderDied()
361 clients.erase(it); in binderDied()
385 std::vector<ClientInfo>& clients = mClients[timeout]; in registerClientLocked() local
388 clients.push_back(ClientInfo(client, callingPid, callingUid, clientType)); in registerClientLocked()
391 if (clients.size() == 1) { in registerClientLocked()
[all …]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
DRenderOverlay.java46 private List<Renderer> clients; field in RenderOverlay
56 clients = new ArrayList<>(10); in RenderOverlay()
64 for (Renderer renderer : clients) { in getPieRenderer()
73 clients.add(renderer); in addRenderer()
82 clients.add(pos, renderer); in addRenderer()
88 clients.remove(renderer); in remove()
129 if (clients == null) { in onLayout()
132 for (Renderer renderer : clients) { in onLayout()
140 if (clients == null) { in draw()
144 for (Renderer renderer : clients) { in draw()
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java152 ArrayList<ClientInfo> clients = mClientMap.get(timeout); in dump() local
154 for (int i = 0; i < clients.size(); i++, count++) { in dump()
155 ClientInfo clientInfo = clients.get(i); in dump()
180 ArrayList<ClientInfo> clients = mClientMap.get(timeout); in registerClient() local
181 if (clients == null) { in registerClient()
187 for (int i = 0; i < clients.size(); i++) { in registerClient()
188 ClientInfo clientInfo = clients.get(i); in registerClient()
205 clients.add(clientInfo); in registerClient()
221 ArrayList<ClientInfo> clients = mClientMap.get(timeout); in unregisterClient() local
222 for (int i = 0; i < clients.size(); i++) { in unregisterClient()
[all …]
/packages/apps/Camera2/src/com/android/camera/one/v2/core/
DObservableFrameServer.java70 int clients = mClientCount.decrementAndGet(); in close() local
71 mAvailability.update(clients == 0); in close()
86 int clients = mClientCount.incrementAndGet(); in createExclusiveSession() local
87 mAvailability.update(clients == 0); in createExclusiveSession()
96 clients = mClientCount.decrementAndGet(); in createExclusiveSession()
97 mAvailability.update(clients == 0); in createExclusiveSession()
109 int clients = mClientCount.incrementAndGet(); in tryCreateExclusiveSession() local
110 mAvailability.update(clients == 0); in tryCreateExclusiveSession()
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java229 List<Client> clients = mPropIdClientMap.get(propId); in registerListener() local
230 if (clients == null) { in registerListener()
231 clients = new CopyOnWriteArrayList<Client>(); in registerListener()
232 mPropIdClientMap.put(propId, clients); in registerListener()
234 if (!clients.contains(client)) { in registerListener()
235 clients.add(client); in registerListener()
487 List<Client> clients = mPropIdClientMap.get(propId); in onPropertyChange() local
488 if (clients == null) { in onPropertyChange()
494 for (Client c : clients) { in onPropertyChange()
DInputCaptureClientController.java624 ClientsToDispatch clients; in dispatchClientCallbackLocked() local
629 clients = mClientDispatchQueue.pop(); in dispatchClientCallbackLocked()
634 + clients.mClientsToDispatch.size() in dispatchClientCallbackLocked()
635 + ", display:" + clients.mDisplayType); in dispatchClientCallbackLocked()
637 for (int i = 0; i < clients.mClientsToDispatch.size(); i++) { in dispatchClientCallbackLocked()
638 ICarInputCallback callback = clients.mClientsToDispatch.keyAt(i); in dispatchClientCallbackLocked()
639 int[] inputTypes = clients.mClientsToDispatch.valueAt(i); in dispatchClientCallbackLocked()
646 callback.onCaptureStateChanged(clients.mDisplayType, inputTypes); in dispatchClientCallbackLocked()
DCarProjectionService.java742 List<WirelessClient> clients; in sendApStatusMessage() local
744 clients = new ArrayList<>(mWirelessClients.values()); in sendApStatusMessage()
746 for (WirelessClient client : clients) { in sendApStatusMessage()
991 public void onConnectedClientsChanged(List<WifiClient> clients) { in onConnectedClientsChanged() argument
994 + clients.size() + " clients"); in onConnectedClientsChanged()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiTetherSoftApManager.java25 public void onConnectedClientsChanged(List<WifiClient> clients) {
26 mWifiTetherSoftApCallback.onConnectedClientsChanged(clients);
54 void onConnectedClientsChanged(List<WifiClient> clients); in onConnectedClientsChanged() argument
DWifiTetherPreferenceController.java131 public void onConnectedClientsChanged(List<WifiClient> clients) { in initWifiTetherSoftApManager()
136 R.plurals.wifi_tether_connected_summary, clients.size(), in initWifiTetherSoftApManager()
137 clients.size())); in initWifiTetherSoftApManager()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/tether/
DWifiTetherSoftApManager.java25 public void onConnectedClientsChanged(List<WifiClient> clients) {
26 mWifiTetherSoftApCallback.onConnectedClientsChanged(clients);
54 void onConnectedClientsChanged(List<WifiClient> clients); in onConnectedClientsChanged() argument
DWifiTetherPreferenceController.java133 public void onConnectedClientsChanged(List<WifiClient> clients) { in initWifiTetherSoftApManager()
137 int numberOfClients = clients.size(); in initWifiTetherSoftApManager()
/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
DCarWatchdogServiceTest.java164 ArrayList<TestClient> clients = new ArrayList<>(Arrays.asList( in testMultipleClients() local
170 for (int i = 0; i < clients.size(); i++) { in testMultipleClients()
171 clients.get(i).registerClient(); in testMultipleClients()
175 for (int i = 0; i < clients.size(); i++) { in testMultipleClients()
176 assertThat(clients.get(i).mAndroidClient.makeSureHealthCheckDone()).isEqualTo(true); in testMultipleClients()
/packages/services/Car/watchdog/sepolicy/public/
Dattributes1 # All car watchdog clients
/packages/services/Car/computepipe/sepolicy/public/
Dattributes1 # All computepipe clients
/packages/services/Car/computepipe/sepolicy/private/
Dcomputepipeclientdomain.te2 ### Rules for all domains which are computepipe clients
Dcomputepiperunnerdomain.te2 ### Rules for all domains which are computepipe clients
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DScanManager.java1019 private void removeFilterIfExisits(Set<Integer> clients, int scannerId, int filterIndex) { in removeFilterIfExisits() argument
1020 if (!clients.contains(scannerId)) { in removeFilterIfExisits()
1023 clients.remove(scannerId); in removeFilterIfExisits()
1025 if (clients.isEmpty()) { in removeFilterIfExisits()
/packages/services/Car/tests/BugReportApp/libs/
Dgoogle-api-client-1.30.2.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
/packages/inputmethods/LatinIME/dictionaries/
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...