HomeSort by relevance Sort by last modified time
    Searched defs:getParentSession (Results 1 - 2 of 2) sorted by null

  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
SessionManagerTest.java 98 assertNotNull(testChildSession.getParentSession());
99 assertEquals(TEST_PARENT_NAME, testChildSession.getParentSession().getShortMethodName());
101 assertFalse(testChildSession.getParentSession().isSessionCompleted());
165 assertNotNull(testSession.getParentSession());
166 assertEquals(TEST_PARENT_NAME, testSession.getParentSession().getShortMethodName());
190 assertNull(testSession.getParentSession());
210 assertEquals(parentSession, testSession.getParentSession());
265 assertNull(childSession.getParentSession());
  /frameworks/base/telecomm/java/android/telecom/Logging/
Session.java 184 public Session getParentSession() {
253 while (topNode.getParentSession() != null) {
254 topNode = topNode.getParentSession();
293 Session parentSession = getParentSession();
324 if (getParentSession() == null) {
327 return getParentSession().isSessionExternal();

Completed in 66 milliseconds