Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DConcurrentWeakMap.kt15 weakRefQueue: Boolean = false in <lambda>()
19 private val weakRefQueue: ReferenceQueue<K>? = if (weakRefQueue) ReferenceQueue() else null in <lambda>() constant
66 check(weakRefQueue != null) { "Must be created with weakRefQueue = true" } in <lambda>()
69 cleanWeakRef(weakRefQueue.remove() as HashedWeakRef<*>) in <lambda>()
134 if (weakKey == null) weakKey = HashedWeakRef(key, weakRefQueue) in <lambda>()
DDebugProbesImpl.kt71 …llerInfoCache = ConcurrentWeakMap<CoroutineStackFrame, DebugCoroutineInfoImpl>(weakRefQueue = true) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/
DConcurrentWeakMapCollectionStressTest.kt18 val m = ConcurrentWeakMap<Key, ByteArray>(weakRefQueue = true) in testCollected()