Home
last modified time | relevance | path

Searched refs:parentSession (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/Logging/
DSessionManager.java290 Session parentSession = subsession.getParentSession(); in continueSession() local
291 if (parentSession == null) { in continueSession()
328 Session parentSession = completedSession.getParentSession(); in endSession() local
333 if (parentSession != null && !parentSession.isSessionCompleted() && in endSession()
335 mSessionMapper.put(threadId, parentSession); in endSession()
346 Session parentSession = subsession.getParentSession(); in endParentSessions() local
347 if (parentSession != null) { in endParentSessions()
349 parentSession.removeChild(subsession); in endParentSessions()
352 if (parentSession.isExternal()) { in endParentSessions()
357 endParentSessions(parentSession); in endParentSessions()
DSession.java191 public void setParentSession(Session parentSession) { in setParentSession() argument
192 mParentSession = parentSession; in setParentSession()
284 Session parentSession = mParentSession; in getFullSessionId() local
285 if (parentSession == null) { in getFullSessionId()
289 return parentSession.getFullSessionId(parentCount + 1) in getFullSessionId()
294 return parentSession.getFullSessionId(parentCount + 1); in getFullSessionId()
375 Session parentSession = getParentSession(); in getFullMethodPath() local
377 if (parentSession != null) { in getFullMethodPath()
380 isSessionStarted = !mShortMethodName.equals(parentSession.mShortMethodName); in getFullMethodPath()
381 parentSession.getFullMethodPath(sb, truncatePath, parentCount + 1); in getFullMethodPath()
/frameworks/base/services/core/java/com/android/server/rollback/
DRollbackManagerServiceImpl.java723 PackageInstaller.SessionInfo parentSession = packageSession.hasParentSessionId() in enableRollback() local
725 if (parentSession == null) { in enableRollback()
735 if (rollback.getApkSessionId() == parentSession.getSessionId()) { in enableRollback()
746 if (mOrphanedApkSessionIds.indexOf(parentSession.getSessionId()) != -1) { in enableRollback()
760 newRollback = createNewRollbackLocked(parentSession); in enableRollback()
1256 private Rollback createNewRollbackLocked(PackageInstaller.SessionInfo parentSession) { in createNewRollbackLocked() argument
1259 if (parentSession.getUser() == UserHandle.ALL) { in createNewRollbackLocked()
1262 userId = parentSession.getUser().getIdentifier(); in createNewRollbackLocked()
1264 String installerPackageName = parentSession.getInstallerPackageName(); in createNewRollbackLocked()
1266 int parentSessionId = parentSession.getSessionId(); in createNewRollbackLocked()
[all …]
DRollback.java512 PackageInstaller.Session parentSession = packageInstaller.openSession( in commit() local
564 parentSession.addChildSessionId(sessionId); in commit()
628 parentSession.commit(receiver.getIntentSender()); in commit()
/frameworks/base/services/core/java/com/android/server/pm/
DStagingManager.java961 PackageInstallerSession parentSession = mStagedSessions.get(parentId); in checkNonOverlappingWithStagedSessions() local
962 if (parentSession == null || parentSession.isStagedAndInTerminalState() in checkNonOverlappingWithStagedSessions()
963 || parentSession.isDestroyed()) { in checkNonOverlappingWithStagedSessions()