Searched refs:shortMethodName (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/telecomm/java/android/telecom/Logging/ |
D | SessionManager.java | 125 public synchronized void startSession(Session.Info info, String shortMethodName, in startSession() argument 129 startSession(shortMethodName, callerIdentification); in startSession() 131 startExternalSession(info, shortMethodName); in startSession() 139 public synchronized void startSession(String shortMethodName, in startSession() argument 148 continueSession(childSession, shortMethodName); in startSession() 154 Session newSession = new Session(getNextSessionID(), shortMethodName, in startSession() 166 String shortMethodName) { in startExternalSession() argument 195 continueSession(childSession, shortMethodName); in startExternalSession() 284 public synchronized void continueSession(Session subsession, String shortMethodName) { in continueSession() argument 289 subsession.setShortMethodName(shortMethodName); in continueSession() [all …]
|
D | Session.java | 154 public Session(String sessionId, String shortMethodName, long startTimeMs, in Session() argument 157 setShortMethodName(shortMethodName); in Session() 176 public void setShortMethodName(String shortMethodName) { in setShortMethodName() argument 177 if (shortMethodName == null) { in setShortMethodName() 178 shortMethodName = ""; in setShortMethodName() 180 mShortMethodName = shortMethodName; in setShortMethodName()
|
/frameworks/base/telecomm/java/android/telecom/ |
D | Log.java | 200 public static void startSession(String shortMethodName) { in startSession() argument 201 getSessionManager().startSession(shortMethodName, null); in startSession() 204 public static void startSession(Session.Info info, String shortMethodName) { in startSession() argument 205 getSessionManager().startSession(info, shortMethodName, null); in startSession() 208 public static void startSession(String shortMethodName, String callerIdentification) { in startSession() argument 209 getSessionManager().startSession(shortMethodName, callerIdentification); in startSession() 212 public static void startSession(Session.Info info, String shortMethodName, in startSession() argument 214 getSessionManager().startSession(info, shortMethodName, callerIdentification); in startSession() 239 public static void continueSession(Session subsession, String shortMethodName) { in continueSession() argument 240 getSessionManager().continueSession(subsession, shortMethodName); in continueSession()
|