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

/frameworks/base/services/java/com/android/server/am/
H A DContentProviderRecord.java29 // All attached clients
30 final HashSet<ProcessRecord> clients = new HashSet<ProcessRecord>(); field in class:ContentProviderRecord
79 if (clients.size() > 0) {
81 for (ProcessRecord cproc : clients) {
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIntRangeManager.java42 * Initial capacity for IntRange clients array list. There will be
48 * One or more clients forming the continuous range [startId, endId].
58 final ArrayList<ClientRange> clients; field in class:IntRangeManager.IntRange
69 clients = new ArrayList<ClientRange>(INITIAL_CLIENTS_ARRAY_SIZE);
70 clients.add(new ClientRange(startId, endId, client));
80 clients = new ArrayList<ClientRange>(INITIAL_CLIENTS_ARRAY_SIZE);
81 clients.add(clientRange);
97 this.clients = new ArrayList<ClientRange>(intRange.clients.size());
99 this.clients
[all...]

Completed in 335 milliseconds