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

/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java232 private boolean requestLimitReached(ClientInfo clientInfo) { argument
233 if (clientInfo.mClientIds.size() >= ClientInfo.MAX_LIMIT) {
234 if (DBG) Slog.d(TAG, "Exceeded max outstanding requests " + clientInfo);
240 private void storeRequestMap(int clientId, int globalId, ClientInfo clientInfo, int what) { argument
241 clientInfo.mClientIds.put(clientId, globalId);
242 clientInfo.mClientRequests.put(clientId, what);
243 mIdToClientInfoMap.put(globalId, clientInfo);
246 private void removeRequestMap(int clientId, int globalId, ClientInfo clientInfo) { argument
247 clientInfo.mClientIds.remove(clientId);
248 clientInfo
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java357 final ClientInfo clientInfo; field in class:WifiScanningServiceImpl.RequestInfo
362 RequestInfo(ClientInfo clientInfo, int handlerId, WorkSource requestedWorkSource, argument
364 this.clientInfo = clientInfo;
367 this.workSource = computeWorkSource(clientInfo, requestedWorkSource);
371 clientInfo.reportEvent(what, arg1, handlerId, obj);
385 if (entry.clientInfo == ci && entry.handlerId == handlerId) {
408 if (entry.clientInfo == ci) {
419 if (entry.clientInfo == ci) {
852 logCallback("singleScanFailed", entry.clientInfo, entr
[all...]

Completed in 812 milliseconds