HomeSort by relevance Sort by last modified time
    Searched refs:ConnectionRecord (Results 1 - 9 of 9) sorted by null

  /frameworks/base/services/java/com/android/server/am/
AppBindRecord.java 31 final HashSet<ConnectionRecord> connections = new HashSet<ConnectionRecord>();
32 // All ConnectionRecord for this client.
43 Iterator<ConnectionRecord> it = connections.iterator();
45 ConnectionRecord c = it.next();
ConnectionRecord.java 28 class ConnectionRecord {
47 ConnectionRecord(AppBindRecord _binding, ActivityRecord _activity,
63 sb.append("ConnectionRecord{");
ActiveServices.java 100 final HashMap<IBinder, ArrayList<ConnectionRecord>> mServiceConnections
101 = new HashMap<IBinder, ArrayList<ConnectionRecord>>();
492 ConnectionRecord c = new ConnectionRecord(b, activity,
496 ArrayList<ConnectionRecord> clist = s.connections.get(binder);
498 clist = new ArrayList<ConnectionRecord>();
505 activity.connections = new HashSet<ConnectionRecord>();
515 clist = new ArrayList<ConnectionRecord>();
578 Iterator<ArrayList<ConnectionRecord>> it
581 ArrayList<ConnectionRecord> clist = it.next()
    [all...]
IntentBindRecord.java 87 for (ConnectionRecord conn : app.connections) {
ProcessRecord.java 126 // All ConnectionRecord this process holds
127 final HashSet<ConnectionRecord> connections
128 = new HashSet<ConnectionRecord>();
299 for (ConnectionRecord cr : connections) {
384 for (ConnectionRecord cr : connections) {
ServiceRecord.java 82 final HashMap<IBinder, ArrayList<ConnectionRecord>> connections
83 = new HashMap<IBinder, ArrayList<ConnectionRecord>>();
84 // IBinder -> ConnectionRecord of all bound clients
276 Iterator<ArrayList<ConnectionRecord>> it = connections.values().iterator();
278 ArrayList<ConnectionRecord> c = it.next();
ActivityRecord.java 102 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold
    [all...]
ActivityStack.java     [all...]
ActivityManagerService.java     [all...]

Completed in 53 milliseconds