Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/activitycontext/src/main/java/com/android/activitycontext/
DActivityContext.java56 private static @Nullable Object sThrowValue; field in ActivityContext
95 sThrowValue = null; in getWithContext()
111 if (sThrowValue != null) { in getWithContext()
112 if (sThrowValue instanceof RuntimeException) { in getWithContext()
113 throw (RuntimeException) sThrowValue; in getWithContext()
116 if (sThrowValue instanceof Error) { in getWithContext()
117 throw (Error) sThrowValue; in getWithContext()
172 sThrowValue = e; in onResume()