Searched refs:threadName (Results 1 - 25 of 47) sorted by relevance

12

/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DLoadThread.java31 public LoadThread(String threadName) { argument
32 super(threadName);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DResume002Debuggee.java32 String threadName = Thread.currentThread().getName();
33 System.out.println(threadName + " enters breakpointMethod");
43 String threadName = Thread.currentThread().getName();
44 logWriter.println("Thread \"" + threadName + "\" starts");
46 logWriter.println("Thread \"" + threadName + "\" ends");
H A DSuspendTest.java68 String threadName;
78 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
92 + "\"" + threadName + "\" "
98 + threadName + "\"" + " is not in suspended state");
H A DResumeTest.java225 final String threadName; field in class:ResumeTest.ThreadInfo
228 public ThreadInfo(String threadName) { argument
229 this.threadName = threadName;
307 String threadName = null;
309 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
316 if (threadInfo.threadName.equals(threadName) ) {
330 + threadInfo.threadName);
360 + " (" + threadInfo.threadName
[all...]
H A DAllThreadsTest.java70 String threadName;
80 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
94 + "\"" + threadName + "\" "
98 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) {
128 String threadName;
140 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
154 + "\"" + threadName + "\" "
200 String threadName;
209 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
211 if (threadName
[all...]
H A DResume002Test.java92 String threadName = debuggeeWrapper.vmMirror.getThreadName(eventThreadID);
93 logWriter.println("Thread \"" + threadName + "\" hit breakpoint");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DNameTest.java59 String threadName;
71 threadName = thrdReply.getNextValueAsString();
72 logWriter.println("\tthreadID = " + threadID + " threadName = "
73 + threadName);
74 if (threadName.length() == 0) {
H A DThreadGroupTest.java68 String groupName, threadName;
86 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
89 + "; threadName=" + threadName
93 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) {
H A DSuspendTest.java100 String threadName = null;
102 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
110 if ( threadName.equals(testedThreadsNames[k]) ) {
121 + "; threadName = " + threadName);
155 logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName);
167 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName);
H A DSuspendCountTest.java114 String threadName = null;
116 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 allThreadsNames[i] = threadName;
125 if ( threadName.equals(testedThreadsNames[k]) ) {
136 + "; threadName = " + threadName);
150 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
187 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
215 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
256 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
[all...]
H A DForceEarlyReturnDebuggee.java33 public static String threadName; field in class:ForceEarlyReturnDebuggee
68 threadName = synchronizer.receiveMessage();
69 DebuggeeThread thrd = new DebuggeeThread(threadName);
H A DThreadGroup002Test.java112 String threadName = null;
114 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 if ( threadName.equals(testedThreadsNames[k]) ) {
170 + "; threadName = " + testedThreadsNames[threadCount]);
H A DResumeTest.java102 String threadName = null;
104 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
112 if ( threadName.equals(testedThreadsNames[k]) ) {
146 + "; threadName = " + testedThreadsNames[i]);
185 + "; threadName = " + testedThreadsNames[i]);
288 + "; threadName = " + testedThreadsNames[i]);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DThreadOnlyModifierDebuggee.java109 String threadName = t.getName();
110 logWriter.println("Thread " + threadName + " starts");
113 logWriter.println("Wait for end of thread " + threadName);
118 logWriter.println("Thread " + threadName + " ends");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DThreadEndTest.java83 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
84 logWriter.println("=> threadName = " + threadName);
85 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
H A DThreadStartTest.java89 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
90 logWriter.println("=> threadName = " + threadName);
93 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DCallables.java106 private static boolean trySetName(final String threadName, Thread currentThread) { argument
111 currentThread.setName(threadName);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
H A DChildrenTest.java101 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
103 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
110 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
113 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName);
/external/vogar/src/vogar/tasks/
H A DTaskQueue.java144 String threadName = Thread.currentThread().getName();
150 Thread.currentThread().setName(threadName);
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DPeerConnectionFactory.java201 private static void printStackTrace(Thread thread, String threadName) { argument
205 Logging.d(TAG, threadName + " stacks trace:");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameAccessTest.java190 String threadName = synchronizer.receiveMessage();
191 long threadId = getThreadIdFromName(threadName);
203 private long getThreadIdFromName(String threadName) { argument
207 if (threadName.equals(currentThreadName)) {
211 throw new TestErrorException("Could not find thread id of thread \"" + threadName + "\"");
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DTestThread.java66 public TestThread(L lockLikeObject, String threadName) { argument
67 super(threadName);
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DVideoRendererGui.java585 private static void printStackTrace(Thread thread, String threadName) { argument
589 Logging.d(TAG, threadName + " stacks trace:");
/external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
H A Dautobanh.jarMETA-INF/MANIFEST.MF de/tavendo/autobahn/ByteBufferInputStream.class ByteBufferInputStream.java package de.tavendo ...
/external/python/cpython2/Lib/logging/
H A D__init__.py285 self.threadName = threading.current_thread().name
288 self.threadName = None
383 %(threadName)s Thread name (if available)

Completed in 461 milliseconds

12