Searched refs:mDeviceSerial (Results 1 – 5 of 5) sorted by relevance
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ |
D | ConsoleReporter.java | 43 private String mDeviceSerial = UNKNOWN_DEVICE; field in ConsoleReporter 61 mDeviceSerial = buildInfo.getDeviceSerial().replace("%", "%%"); in invocationStarted() 170 format = String.format("[%s %s %s] %s", progress(), mModuleId, mDeviceSerial, format); in logProgress() 178 format = String.format("[%s] %s", mDeviceSerial, format); in logMessage() 211 return mDeviceSerial; in getDeviceSerial()
|
D | ResultReporter.java | 117 private String mDeviceSerial = UNKNOWN_DEVICE; field in ResultReporter 156 if (mDeviceSerial == null && buildInfo.getDeviceSerial() != null) { in invocationStarted() 157 mDeviceSerial = buildInfo.getDeviceSerial(); in invocationStarted() 469 CLog.e("[%s] Exception while saving result XML.", mDeviceSerial); in finalizeResults() 545 CLog.e("[%s] error saving XML with log saver", mDeviceSerial); in saveLog() 597 CLog.e("[%s] IOException while uploading result.", mDeviceSerial); in uploadResult()
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
D | CtsTestLogReporter.java | 44 private String mDeviceSerial; field in CtsTestLogReporter 52 …mDeviceSerial = buildInfo.getDeviceSerial() == null ? "unknown_device" : buildInfo.getDeviceSerial… in invocationStarted() 159 Log.logAndDisplay(LogLevel.INFO, mDeviceSerial, String.format(format, args)); in logResult()
|
D | TestPackageResult.java | 56 private String mDeviceSerial; field in TestPackageResult 68 mDeviceSerial = deviceSerial; in setDeviceSerial() 72 return mDeviceSerial; in getDeviceSerial()
|
D | CtsXmlResultReporter.java | 108 private String mDeviceSerial; field in CtsXmlResultReporter 140 mDeviceSerial = buildInfo.getDeviceSerial() == null ? "unknown_device" : in invocationStarted() 272 mCurrentPkgResult.setDeviceSerial(mDeviceSerial); in testRunStarted() 388 Log.logAndDisplay(LogLevel.INFO, mDeviceSerial, String.format(format, args)); in logResult()
|