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

/frameworks/base/services/java/com/android/server/
H A DNsdService.java243 private boolean requestLimitReached(ClientInfo clientInfo) { argument
244 if (clientInfo.mClientIds.size() >= ClientInfo.MAX_LIMIT) {
245 if (DBG) Slog.d(TAG, "Exceeded max outstanding requests " + clientInfo);
251 private void storeRequestMap(int clientId, int globalId, ClientInfo clientInfo) { argument
252 clientInfo.mClientIds.put(clientId, globalId);
253 mIdToClientInfoMap.put(globalId, clientInfo);
256 private void removeRequestMap(int clientId, int globalId, ClientInfo clientInfo) { argument
257 clientInfo.mClientIds.remove(clientId);
263 ClientInfo clientInfo;
290 clientInfo
[all...]

Completed in 34 milliseconds