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

  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
SessionManagerTest.java 164 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID);
167 assertEquals(TEST_PARENT_NAME, parentSession.getShortMethodName());
168 assertTrue(parentSession.getChildSessions().contains(testSession));
182 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID);
188 assertFalse(parentSession.isSessionCompleted());
202 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID);
210 assertEquals(parentSession, testSession.getParentSession());
211 assertFalse(parentSession.isStartedFromActiveSession());
212 assertFalse(parentSession.isSessionCompleted());
225 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID)
    [all...]
  /frameworks/base/telecomm/java/android/telecom/Logging/
SessionManager.java 273 Session parentSession = subsession.getParentSession();
274 if (parentSession == null) {
311 Session parentSession = completedSession.getParentSession();
316 if (parentSession != null && !parentSession.isSessionCompleted() &&
318 mSessionMapper.put(threadId, parentSession);
329 Session parentSession = subsession.getParentSession();
330 if (parentSession != null) {
332 parentSession.removeChild(subsession);
335 if (parentSession.isExternal())
    [all...]
Session.java 160 public void setParentSession(Session parentSession) {
161 mParentSession = parentSession;
233 Session parentSession = mParentSession;
234 if (parentSession == null) {
238 return parentSession.getFullSessionId() +
243 return parentSession.getFullSessionId();
293 Session parentSession = getParentSession();
295 if (parentSession != null) {
298 isSessionStarted = !mShortMethodName.equals(parentSession.mShortMethodName);
299 parentSession.getFullMethodPath(sb, truncatePath)
    [all...]

Completed in 2932 milliseconds