Home
last modified time | relevance | path

Searched refs:childSessionId (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/contentcapture/
DMainContentCaptureSession.java694 void notifyChildSessionStarted(int parentSessionId, int childSessionId, in notifyChildSessionStarted() argument
696 mHandler.post(() -> sendEvent(new ContentCaptureEvent(childSessionId, TYPE_SESSION_STARTED) in notifyChildSessionStarted()
701 void notifyChildSessionFinished(int parentSessionId, int childSessionId) { in notifyChildSessionFinished() argument
702 mHandler.post(() -> sendEvent(new ContentCaptureEvent(childSessionId, TYPE_SESSION_FINISHED) in notifyChildSessionFinished()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerSession.java1032 for (int childSessionId : childSessionIds) { in PackageInstallerSession()
1035 mChildSessions.put(childSessionId, null); in PackageInstallerSession()
2155 int childSessionId = mChildSessions.keyAt(i); in onAfterSessionRead() local
2156 PackageInstallerSession childSession = allSessions.get(childSessionId); in onAfterSessionRead()
2160 Slog.e(TAG, "Child session not existed: " + childSessionId); in onAfterSessionRead()
4077 public void addChildSessionId(int childSessionId) { in addChildSessionId() argument
4082 final PackageInstallerSession childSession = mSessionProvider.getSession(childSessionId); in addChildSessionId()
4084 throw new IllegalStateException("Unable to add child session " + childSessionId in addChildSessionId()
4088 throw new IllegalStateException("Multi-session " + childSessionId in addChildSessionId()
4107 throw new IllegalStateException("Unable to add child session " + childSessionId in addChildSessionId()
[all …]
/frameworks/base/services/core/java/com/android/server/rollback/
DRollbackManagerServiceImpl.java999 for (int childSessionId : session.getChildSessionIds()) {
1001 installer.getSessionInfo(childSessionId);
1003 Slog.e(TAG, "No matching child install session for: " + childSessionId);