Home
last modified time | relevance | path

Searched refs:logTag (Results 1 – 8 of 8) sorted by relevance

/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DMultiLog.java29 public void logInfo(String logTag, String format, Object... args); in logInfo() argument
37 public void logDebug(String logTag, String format, Object... args); in logDebug() argument
45 public void logWarn(String logTag, String format, Object... args); in logWarn() argument
53 public void logError(String logTag, String format, Object... args); in logError() argument
/platform_testing/libraries/sts-common-util/device-side/src/com/android/sts/common/util/
DStsExtraBusinessLogicTestCase.java110 public void logInfo(String logTag, String format, Object... args) { in logInfo() argument
111 Log.i(logTag, String.format(format, args)); in logInfo()
115 public void logDebug(String logTag, String format, Object... args) { in logDebug() argument
116 Log.d(logTag, String.format(format, args)); in logDebug()
120 public void logWarn(String logTag, String format, Object... args) { in logWarn() argument
121 Log.w(logTag, String.format(format, args)); in logWarn()
125 public void logError(String logTag, String format, Object... args) { in logError() argument
126 Log.e(logTag, String.format(format, args)); in logError()
/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/tradefed/testtype/
DStsExtraBusinessLogicHostTestBase.java117 public void logInfo(String logTag, String format, Object... args) { in logInfo() argument
118 Log.i(logTag, String.format(format, args)); in logInfo()
122 public void logDebug(String logTag, String format, Object... args) { in logDebug() argument
123 Log.d(logTag, String.format(format, args)); in logDebug()
127 public void logWarn(String logTag, String format, Object... args) { in logWarn() argument
128 Log.w(logTag, String.format(format, args)); in logWarn()
132 public void logError(String logTag, String format, Object... args) { in logError() argument
133 Log.e(logTag, String.format(format, args)); in logError()
/platform_testing/libraries/systemui-helper/src/android/platform/helpers/
DProcessUtil.kt28 private fun getPids(logTag: String): List<String> { in <lambda>()
30 Log.d(TAG, "pidofResult($logTag) = \"$pidofResult\"") in <lambda>()
/platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
DLogcatCollectorTest.java175 String logTag = this.getClass().getSimpleName() + "_testLogcatCollectionWithBeforeDuration"; in testLogcatCollectionWithBeforeDuration() local
176 Log.i(logTag, "Sample Message"); in testLogcatCollectionWithBeforeDuration()
313 String logTag = this.getClass().getSimpleName() + "_testRetrievingLogcat"; in testRetrievingLogcat() local
314 Log.i(logTag, "Message 1"); in testRetrievingLogcat()
315 Log.w(logTag, "Message 2"); in testRetrievingLogcat()
316 Log.e(logTag, "Message 3"); in testRetrievingLogcat()
343 String message1Regex = String.format(LOGCAT_REGEX_TEMPLATE, "I", logTag, "Message 1"); in testRetrievingLogcat()
344 String message2Regex = String.format(LOGCAT_REGEX_TEMPLATE, "W", logTag, "Message 2"); in testRetrievingLogcat()
345 String message3Regex = String.format(LOGCAT_REGEX_TEMPLATE, "E", logTag, "Message 3"); in testRetrievingLogcat()
382 String logTag = this.getClass().getSimpleName() + "_testRetrievingLogcat"; in testLogcatTimespan() local
[all …]
/platform_testing/libraries/sts-common-util/util/tests/src/com/android/sts/common/util/
DStsLogicTest.java256 public void logInfo(String logTag, String format, Object... args) { in logInfo() argument
261 public void logDebug(String logTag, String format, Object... args) { in logDebug() argument
266 public void logWarn(String logTag, String format, Object... args) { in logWarn() argument
271 public void logError(String logTag, String format, Object... args) { in logError() argument
/platform_testing/libraries/sts-common-util/util/src/com/android/sts/common/util/
DStsLogic.java314 public void logInfo(String logTag, String format, Object... args); in logInfo() argument
316 public void logDebug(String logTag, String format, Object... args); in logDebug() argument
318 public void logWarn(String logTag, String format, Object... args); in logWarn() argument
320 public void logError(String logTag, String format, Object... args); in logError() argument
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DTestMetricRule.java92 String logTag) { in TestMetricRule() argument
93 mLogTag = logTag; in TestMetricRule()