Home
last modified time | relevance | path

Searched defs:thread (Results 1 – 21 of 21) sorted by relevance

/tools/tradefederation/core/common_util/com/android/tradefed/command/
DCommandInterrupter.java70 public boolean isInterruptible(@Nonnull Thread thread) { in isInterruptible()
82 public Future<?> allowInterruptAsync( in allowInterruptAsync()
106 public void interrupt(@Nonnull Thread thread, @Nonnull String message) { in interrupt()
121 Thread thread = Thread.currentThread(); in checkInterrupted() local
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/
DFtraceImporterState.kt47 val thread = proc.threadFor(tgid, name) in <lambda>() constant
56 val thread = pidMap[tgid] ?: createProcess(tgid, name) in <lambda>() constant
77 var thread = pidMap[pid] in <lambda>() variable
DImportData.kt31 val thread get() = importer.threadFor(line) constant in trebuchet.importers.ftrace.ImportData
/tools/tradefederation/core/tests/src/com/android/tradefed/suite/checker/
DLeakedThreadStatusCheckerTest.java46 TestInThread thread = new TestInThread(); in testNoLeakedThread() local
59 TestInThread thread = new TestInThread(); in testLeakedThread() local
78 TestInThread thread = new TestInThread(); in testLeakedThread_background() local
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/task/
DImportTaskTest.kt47 val thread = process.threads.find { it.name == "surfaceflinger" }!! in <lambda>() constant
64 val thread = process.threads.find { it.name == "RenderThread" }!! in <lambda>() constant
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/importers/ftrace/
DFtraceImporterTest.kt78 val thread = process.threads.first() in testImportBeginEnd() constant
114 val thread = process.threads.first() in testImportBeginEndNoTgids() constant
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extractors/
DSystraceExtractor.kt39 val thread = Thread { in <lambda>() constant
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/
DProcessModelFragment.kt49 var thread = _threads[pid] in <lambda>() variable
DSchedulingProcessFragment.kt21 class SchedulingProcessFragment(val process: ProcessModelFragment, val thread: ThreadModelFragment,… constant in trebuchet.model.fragments.SchedulingProcessFragment
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/events/
DSchedEvent.kt70 val thread = state.threadFor(pid, task = comm) in import() constant
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandInterrupterTest.java173 Thread thread = new Thread(runnable, "CommandInterrupterTest"); in execute() local
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DIRunUtil.java335 public void setInterruptibleInFuture(Thread thread, long timeMs); in setInterruptibleInFuture()
344 public void interrupt(Thread thread, String message); in interrupt()
DRunUtil.java532 public void setInterruptibleInFuture(Thread thread, final long timeMs) { in setInterruptibleInFuture()
538 public synchronized void interrupt(Thread thread, String message) { in interrupt()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DTradefedSandboxRunner.java204 private void dumpThreadStack(Thread thread, StackTraceElement[] trace, PrintStream ps) { in dumpThreadStack()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/queries/
DSliceQueries.kt135 this.threads.forEach { thread -> in ProcessModel() method
415 process.threads.forEach { thread -> in slices() method
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DRunUtilTest.java435 Thread thread = new Thread(); in testSetInterruptibleInFuture() local
/tools/tradefederation/core/src/com/android/tradefed/result/
DSubprocessResultsReporter.java254 SocketFinisher thread = new SocketFinisher(); in invocationEnded() local
/tools/trebuchet/trebuchet/startup-common/src/
DStartupCommon.kt96 for (thread in this.threads) { in ProcessModel() method
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandScheduler.java106 Thread thread = new Thread(HB_GROUP, r); in newThread() local
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java1075 private void dumpThreadStack(Thread thread, StackTraceElement[] trace, PrintStream ps) { in dumpThreadStack()
DCommandScheduler.java1138 private void waitForThread(Thread thread) { in waitForThread()