Searched refs:shortMethodName (Results 1 – 3 of 3) sorted by relevance
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | Session.java | 55 public Session(String sessionId, String shortMethodName, long startTimeMs, long threadID, in Session() argument 58 setShortMethodName(shortMethodName); in Session() 77 public void setShortMethodName(String shortMethodName) { in setShortMethodName() argument 78 if(shortMethodName == null) { in setShortMethodName() 79 shortMethodName = ""; in setShortMethodName() 81 mShortMethodName = shortMethodName; in setShortMethodName()
|
D | Log.java | 396 public static synchronized void startSession(String shortMethodName) { in startSession() argument 397 startSession(shortMethodName, null); in startSession() 399 public static synchronized void startSession(String shortMethodName, in startSession() argument 408 continueSession(childSession, shortMethodName); in startSession() 411 Session newSession = new Session(getNextSessionID(), shortMethodName, in startSession() 469 public static synchronized void continueSession(Session subsession, String shortMethodName) { in continueSession() argument 475 subsession.setShortMethodName(callingMethodName + "->" + shortMethodName); in continueSession() 480 "method %s.", shortMethodName); in continueSession() 489 "Method " + shortMethodName); in continueSession()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | LogTest.java | 199 public LogTestRunnable(String shortMethodName) { in LogTestRunnable() argument 200 mshortMethodName = shortMethodName; in LogTestRunnable() 460 String subsession, String shortMethodName, int timeoutMs) { in verifyMethodCall() argument 466 shortMethodName)); in verifyMethodCall() 471 private String buildExpectedSession(String shortMethodName, int sessionId) { in buildExpectedSession() argument 472 return shortMethodName + "@" + Log.getBase64Encoding(sessionId); in buildExpectedSession() 475 private String buildExpectedResult(String shortMethodName, int sessionId, in buildExpectedResult() argument 478 buildExpectedSession(shortMethodName, sessionId) + subsessionId; in buildExpectedResult() 493 private void verifyEventResult(String event, String shortMethodName, String subsession, in verifyEventResult() argument 495 String expectedSession = buildExpectedSession(shortMethodName, sessionId); in verifyEventResult() [all …]
|