Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DCoroutineContext.kt216 private var threadLocalIsSet = false variable
250 threadLocalIsSet = true // Specify that thread-local is touched at all in saveThreadContext()
255 return !(threadLocalIsSet && threadStateToRecover.get() == null).also { in clearThreadContext()
261 if (threadLocalIsSet) { in afterResume()