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 115 assertNotNull(testChildSession.getParentSession());
116 assertEquals(TEST_PARENT_NAME, testChildSession.getParentSession().getShortMethodName());
118 assertFalse(testChildSession.getParentSession().isSessionCompleted());
185 assertNotNull(testSession.getParentSession());
186 assertEquals(TEST_PARENT_NAME, testSession.getParentSession().getShortMethodName());
211 assertNull(testSession.getParentSession());
232 assertEquals(parentSession, testSession.getParentSession());
289 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 376 milliseconds