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

/frameworks/base/services/core/java/com/android/server/am/
H A DConnectionRecord.java30 final class ConnectionRecord { class
85 ConnectionRecord(AppBindRecord _binding, ActivityRecord _activity, method in class:ConnectionRecord
101 sb.append("ConnectionRecord{");
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbHostManager.java86 private final LinkedList<ConnectionRecord> mConnections = new LinkedList<ConnectionRecord>();
87 private ConnectionRecord mLastConnect;
90 * ConnectionRecord
93 class ConnectionRecord { class in class:UsbHostManager
108 ConnectionRecord(String deviceAddress, int mode, byte[] descriptors) { method in class:UsbHostManager.ConnectionRecord
296 ConnectionRecord rec =
297 new ConnectionRecord(deviceAddress, mode, rawDescriptors);
299 if (mode != ConnectionRecord.DISCONNECT) {
377 addConnectionRecord(deviceAddress, ConnectionRecord
[all...]
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java106 private final ArrayMap<IBinder, ConnectionRecord> mConnections = new ArrayMap<>();
107 private ConnectionRecord mCurConnection;
115 private class ConnectionRecord implements IBinder.DeathRecipient { class in class:MediaBrowserService
221 final ConnectionRecord connection = new ConnectionRecord();
268 final ConnectionRecord old = mConnections.remove(b);
291 final ConnectionRecord connection = mConnections.get(b);
316 ConnectionRecord connection = mConnections.get(b);
337 ConnectionRecord connection = mConnections.get(b);
489 Iterator<ConnectionRecord> ite
[all...]
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaBrowserServiceCompat.java179 final ArrayMap<IBinder, ConnectionRecord> mConnections = new ArrayMap<>();
180 ConnectionRecord mCurConnection;
215 Iterator<ConnectionRecord> iter = mConnections.values().iterator();
217 ConnectionRecord connection = iter.next();
236 ConnectionRecord connection = mConnections.get(binder);
275 ConnectionRecord connection = mConnections.get(binder);
351 mCurConnection = new ConnectionRecord(clientPackageName, -1, clientUid, rootHints,
399 ConnectionRecord connection = mConnections.get(binder);
418 ConnectionRecord connection = mConnections.get(binder);
651 private class ConnectionRecord implement class in class:MediaBrowserServiceCompat
661 ConnectionRecord(String pkg, int pid, int uid, Bundle rootHints, method in class:MediaBrowserServiceCompat.ConnectionRecord
[all...]

Completed in 48 milliseconds