Home
last modified time | relevance | path

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

/frameworks/base/telecomm/java/android/telecom/Logging/
DSessionManager.java123 public synchronized void startSession(Session.Info info, String shortMethodName, in startSession() argument
127 startSession(shortMethodName, callerIdentification); in startSession()
129 startExternalSession(info, shortMethodName); in startSession()
137 public synchronized void startSession(String shortMethodName, in startSession() argument
146 continueSession(childSession, shortMethodName); in startSession()
152 Session newSession = new Session(getNextSessionID(), shortMethodName, in startSession()
164 String shortMethodName) { in startExternalSession() argument
193 continueSession(childSession, shortMethodName); in startExternalSession()
277 public synchronized void continueSession(Session subsession, String shortMethodName) { in continueSession() argument
282 subsession.setShortMethodName(shortMethodName); in continueSession()
[all …]
DSession.java128 public Session(String sessionId, String shortMethodName, long startTimeMs, in Session() argument
131 setShortMethodName(shortMethodName); in Session()
150 public void setShortMethodName(String shortMethodName) { in setShortMethodName() argument
151 if (shortMethodName == null) { in setShortMethodName()
152 shortMethodName = ""; in setShortMethodName()
154 mShortMethodName = shortMethodName; in setShortMethodName()
/frameworks/base/telecomm/java/android/telecom/
DLog.java190 public static void startSession(String shortMethodName) { in startSession() argument
191 getSessionManager().startSession(shortMethodName, null); in startSession()
194 public static void startSession(Session.Info info, String shortMethodName) { in startSession() argument
195 getSessionManager().startSession(info, shortMethodName, null); in startSession()
198 public static void startSession(String shortMethodName, String callerIdentification) { in startSession() argument
199 getSessionManager().startSession(shortMethodName, callerIdentification); in startSession()
202 public static void startSession(Session.Info info, String shortMethodName, in startSession() argument
204 getSessionManager().startSession(info, shortMethodName, callerIdentification); in startSession()
219 public static void continueSession(Session subsession, String shortMethodName) { in continueSession() argument
220 getSessionManager().continueSession(subsession, shortMethodName); in continueSession()