Trace
-
Cmn
object Trace
Summary
Public functions |
||
|---|---|---|
Unit |
beginAsyncSection(methodName: String, cookie: Int)Writes a trace message to indicate that a given section of code has begun. |
android
|
Unit |
beginSection(label: String)Writes a trace message to indicate that a given section of code has begun. |
Cmn
android
|
Unit |
endAsyncSection(methodName: String, cookie: Int)Writes a trace message to indicate that the current method has ended. |
android
|
Unit |
Writes a trace message to indicate that a given section of code has ended. |
Cmn
android
|
Unit |
Enables the app tracing tag in a non-debuggable process. |
android
|
Boolean |
Checks whether or not tracing is currently enabled. |
android
|
Unit |
setCounter(counterName: String, counterValue: Int)Writes trace message to indicate the value of a given counter. |
android
|
Unit |
@RequiresApi(value = 29)Writes trace message to indicate the value of a given counter. |
android
|
Public functions
beginAsyncSection
fun beginAsyncSection(methodName: String, cookie: Int): Unit
Writes a trace message to indicate that a given section of code has begun.
Must be followed by a call to endAsyncSection with the same methodName and cookie. Unlike beginSection and endSection, asynchronous events do not need to be nested. The name and cookie used to begin an event must be used to end it.
The cookie must be unique to any overlapping events. If events don't overlap, you can simply always pass the same integer (e.g. 0). If they do overlap, the cookie is used to disambiguate between overlapping events, like the following scenario:
[==========================]
[=====================================]
[====]
Without unique cookies, these start/stop timestamps could be misinterpreted by the trace display like the following, to show very different ranges:
[=========================================]
[================]
[==========]
| Parameters | |
|---|---|
methodName: String |
The method name to appear in the trace. |
cookie: Int |
Unique identifier for distinguishing simultaneous events with the same methodName. |
| See also | |
|---|---|
endAsyncSection |
beginSection
fun beginSection(label: String): Unit
Writes a trace message to indicate that a given section of code has begun.
This call must be followed by a corresponding call to endSection on the same thread.
At this time the vertical bar character '|', newline character '\n', and null character '\0' are used internally by the tracing mechanism. If sectionName contains these characters they will be replaced with a space character in the trace.
| Parameters | |
|---|---|
label: String |
The name of the code section to appear in the trace. |
endAsyncSection
fun endAsyncSection(methodName: String, cookie: Int): Unit
Writes a trace message to indicate that the current method has ended.
Must be called exactly once for each call to beginAsyncSection using the same name and cookie.
| Parameters | |
|---|---|
methodName: String |
The method name to appear in the trace. |
cookie: Int |
Unique identifier for distinguishing simultaneous events with the same methodName. |
| See also | |
|---|---|
beginAsyncSection |
endSection
fun endSection(): Unit
Writes a trace message to indicate that a given section of code has ended.
This call must be preceded by a corresponding call to beginSection. Calling this method will mark the end of the most recently begun section of code, so care must be taken to ensure that beginSection / endSection pairs are properly nested and called from the same thread.
forceEnableAppTracing
fun forceEnableAppTracing(): Unit
Enables the app tracing tag in a non-debuggable process.
Beginning in Android 12 (API 31), app tracing - custom tracing performed by app code via this class or android.os.Trace - is always enabled in all apps. Prior to this, app tracing was only enabled in debuggable apps (as well as profileable apps, on API 29/30).
Calling this method enables the app to record custom trace content without debuggable=true on any platform version that supports tracing. Tracing of non-debuggable apps is highly recommended, to ensure accurate performance measurements.
As app tracing is always enabled on Android 12 (API 31) and above, this does nothing after API 31.
isEnabled
fun isEnabled(): Boolean
Checks whether or not tracing is currently enabled.
This is useful to avoid intermediate string creation for trace sections that require formatting. It is not necessary to guard all Trace method calls as they internally already check this. However, it is recommended to use this to prevent creating any temporary objects that would then be passed to those methods to reduce runtime cost when tracing isn't enabled.
| Returns | |
|---|---|
Boolean |
|
setCounter
fun setCounter(counterName: String, counterValue: Int): Unit
Writes trace message to indicate the value of a given counter.
setCounter
@RequiresApi(value = 29)
fun setCounter(counterName: String, counterValue: Long): Unit
Writes trace message to indicate the value of a given counter.