Home | History | Annotate | Download | only in telephony

Lines Matching refs:client

39         ClientWakelockAccountant client = getClientWakelockAccountant(clientId);
41 client.startAttributingWakelock(requestId, token, numRequestsInQueue, uptime);
44 if (!mActiveClients.contains(client)) {
45 mActiveClients.add(client);
52 ClientWakelockAccountant client = getClientWakelockAccountant(clientId);
54 client.stopAttributingWakelock(requestId, token, uptime);
55 if(client.getPendingRequestCount() == 0) {
57 mActiveClients.remove(client);
67 for (ClientWakelockAccountant client : mActiveClients) {
68 client.stopAllPendingRequests(uptime);
80 ClientWakelockAccountant client = mClients.get(key);
81 client.updatePendingRequestWakelockTime(uptime);
82 list.add(new ClientRequestStats(client.mRequestStats));
89 ClientWakelockAccountant client;
92 client = mClients.get(clientId);
94 client = new ClientWakelockAccountant(clientId);
95 mClients.put(clientId, client);
98 return client;
112 ClientWakelockAccountant client = getClientWakelockAccountant(clientId);
114 if (mActiveClients.contains(client)) {
126 pw.println("Client : " + key);