Searched refs:thr (Results 76 - 100 of 134) sorted by relevance

123456

/openjdk7/jdk/test/demo/jvmti/
H A DDemoRun.java50 Thread thr = new Thread(this);
51 thr.setDaemon(true);
52 thr.start();
/openjdk7/jdk/test/java/awt/grab/EmbeddedFrameTest1/
H A DEmbeddedFrameTest1.java125 } catch (Throwable thr) {
126 thr.printStackTrace();
127 EmbeddedFrameTest1.fail("TEST FAILED: " + thr);
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DLowMemoryTest2.java213 Thread thr = new Thread(new BoundlessLoaderThread());
214 thr.start();
218 thr.join();
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DURLJarFile.java224 } catch (Throwable thr) {
228 thr.addSuppressed(ioe);
230 throw thr;
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp38 Thread* thr = v->thread(); local
39 _locals = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, max_locals);
40 _stack = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, max_stack);
51 Thread* thr = _verifier->thread(); local
52 VerificationType* stack = NEW_RESOURCE_ARRAY_IN_THREAD(thr, VerificationType, 1);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DAOMEntry.java238 Throwable thr = exc.getCause() ;
239 if (thr instanceof ObjectAlreadyActive)
240 throw (ObjectAlreadyActive)thr ;
H A DPOAManagerImpl.java360 Thread thr = new Thread(deactivator) ;
361 thr.start() ;
/openjdk7/hotspot/agent/test/jdi/
H A DVMConnection.java296 Thread thr = new Thread("output reader") {
308 thr.setPriority(Thread.MAX_PRIORITY-1);
309 thr.start();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DVMConnection.java465 Thread thr = new Thread("output reader") {
477 thr.setPriority(Thread.MAX_PRIORITY-1);
478 thr.start();
H A DCommands.java368 ThreadReference thr = threadIter.next();
370 Env.description(thr).length());
372 thr.name().length());
377 ThreadReference thr = threadIter.next();
378 if (thr.threadGroup() == null) {
382 if (!thr.threadGroup().equals(tg)) {
383 tg = thr.threadGroup();
394 StringBuffer idBuffer = new StringBuffer(Env.description(thr));
398 StringBuffer nameBuffer = new StringBuffer(thr.name());
408 switch (thr
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp484 JvmtiEnvBase::is_thread_fully_suspended(JavaThread* thr, bool wait_for_suspend, uint32_t *bits) { argument
486 if (thr != JavaThread::current()) {
490 if (!thr->wait_for_ext_suspend_completion(SuspendRetryCount,
499 else if (!thr->is_ext_suspend_completed_with_lock(bits)) {
1192 // Note that either or both of thr and thread_oop
1195 VM_GetMultipleStackTraces::fill_frames(jthread jt, JavaThread *thr, oop thread_oop) { argument
1211 if (thr != NULL) { // add more state bits if there is a JavaThead to query
1213 if (thr->is_ext_suspended() || thr->is_external_suspend()) {
1216 JavaThreadState jts = thr
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DVMConnection.java323 Thread thr = new Thread("output reader") {
335 thr.setPriority(Thread.MAX_PRIORITY-1);
336 thr.start();
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLock.java251 Thread thr = new Thread(handler);
252 thr.setDaemon(true);
253 thr.start();
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp188 bool JNIHandles::is_frame_handle(JavaThread* thr, jobject obj) { argument
192 return (thr->has_last_Java_frame() &&
193 (void*)obj < (void*)thr->stack_base() &&
194 (void*)obj >= (void*)thr->last_Java_sp());
H A Dmutex.hpp230 debug_only(void verify_Monitor(Thread* thr));
H A DjniHandles.hpp95 static bool is_frame_handle(JavaThread* thr, jobject obj);
/openjdk7/hotspot/src/share/vm/memory/
H A DgenCollectedHeap.hpp268 virtual size_t tlab_capacity(Thread* thr) const;
269 virtual size_t unsafe_max_tlab_alloc(Thread* thr) const;
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java222 } catch (Exception thr) {
223 failure("FAIL: unexpected exception: " + thr);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DTimer.java395 TimerTickThread thr = TimerTickThread.call(
399 System.out.println("tick(" + thr.getName() + ","
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m188 pthread_t thr;
193 rc = pthread_create(&thr, &attr, SplashScreenThread, (void *) splash);
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp474 virtual size_t tlab_capacity(Thread *thr) const {
481 virtual size_t unsafe_max_tlab_alloc(Thread *thr) const {
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c512 thread_info* thr = ph->threads; local
513 while (thr) {
514 if (thr->lwp_id == lwp_id) {
515 memcpy(regs, &thr->regs, sizeof(struct reg));
518 thr = thr->next;
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c512 thread_info* thr = ph->threads; local
513 while (thr) {
514 if (thr->lwp_id == lwp_id) {
515 memcpy(regs, &thr->regs, sizeof(struct user_regs_struct));
518 thr = thr->next;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java247 ThreadReference thr = tlist.get(i);
248 int len = Utils.description(thr).length();
252 String name = thr.name();
264 ThreadReference thr = tlist.get(i);
280 sbOut.insert(iBuf, Utils.description(thr));
282 String name = thr.name();
289 sbOut.insert(iBuf, Utils.getStatus(thr));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DORBUtility.java549 public static String getThreadName( Thread thr )
551 if (thr == null)
558 String name = thr.getName() ;
616 Throwable thr = new Throwable() ;
617 printStackTrace( thr.getStackTrace() ) ;

Completed in 113 milliseconds

123456