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

12

/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.java67 String threadName;
77 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
91 + "\"" + threadName + "\" "
97 + threadName + "\"" + " is not in suspended state");
H A DResumeTest.java224 final String threadName; field in class:ResumeTest.ThreadInfo
227 public ThreadInfo(String threadName) { argument
228 this.threadName = threadName;
306 String threadName = null;
308 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
315 if (threadInfo.threadName.equals(threadName) ) {
329 + threadInfo.threadName);
359 + " (" + threadInfo.threadName
[all...]
H A DAllThreadsTest.java69 String threadName;
79 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
93 + "\"" + threadName + "\" "
97 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) {
127 String threadName;
139 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
153 + "\"" + threadName + "\" "
199 String threadName;
208 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
210 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.java58 String threadName;
70 threadName = thrdReply.getNextValueAsString();
71 logWriter.println("\tthreadID = " + threadID + " threadName = "
72 + threadName);
73 if (threadName.length() == 0) {
H A DThreadGroupTest.java67 String groupName, threadName;
85 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
88 + "; threadName=" + threadName
92 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) {
H A DSuspendTest.java99 String threadName = null;
101 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
109 if ( threadName.equals(testedThreadsNames[k]) ) {
120 + "; threadName = " + threadName);
154 logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName);
166 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName);
H A DSuspendCountTest.java113 String threadName = null;
115 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
121 allThreadsNames[i] = threadName;
124 if ( threadName.equals(testedThreadsNames[k]) ) {
135 + "; threadName = " + threadName);
149 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
186 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
214 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
255 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
[all...]
H A DForceEarlyReturnDebuggee.java36 public static String threadName; field in class:ForceEarlyReturnDebuggee
70 threadName = synchronizer.receiveMessage();
71 DebuggeeThread thrd = new DebuggeeThread(threadName, logWriter,
H A DThreadGroup002Test.java111 String threadName = null;
113 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
121 if ( threadName.equals(testedThreadsNames[k]) ) {
169 + "; threadName = " + testedThreadsNames[threadCount]);
H A DResumeTest.java101 String threadName = null;
103 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
111 if ( threadName.equals(testedThreadsNames[k]) ) {
145 + "; threadName = " + testedThreadsNames[i]);
184 + "; threadName = " + testedThreadsNames[i]);
287 + "; 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/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/Events/
H A DThreadEndTest.java90 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
91 logWriter.println("=> threadName = " + threadName);
92 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
H A DThreadStartTest.java96 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
97 logWriter.println("=> threadName = " + threadName);
100 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
H A DChildrenTest.java100 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
102 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
109 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
112 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/jetty/src/java/org/eclipse/jetty/server/
H A DAbstractHttpConnection.java431 String threadName=null;
437 threadName=Thread.currentThread().getName();
438 Thread.currentThread().setName(threadName+" - "+_uri);
571 if (threadName!=null)
572 Thread.currentThread().setName(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/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-classic-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/classic/ ...

Completed in 641 milliseconds

12