Home
last modified time | relevance | path

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

/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/
DDaemonThreadFactory.java33 private final String threadPrefix; field in DaemonThreadFactory
40 public DaemonThreadFactory(String threadPrefix) { in DaemonThreadFactory() argument
41 this.threadPrefix = threadPrefix + DELIMITER; in DaemonThreadFactory()
48 thread.setName(threadPrefix + threadIdGen.getAndIncrement()); in newThread()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DExecutorRule.kt22 … val threadPrefix = description.className.substringAfterLast(".") + "#" + description.methodName in apply() constant
23 _executor = newFixedThreadPoolContext(numberOfThreads, threadPrefix) in apply()
24 ignoreLostThreads(threadPrefix) in apply()