Searched defs:ti (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/test/java/io/charStreams/
H A DLineSink.java32 BufferedReader ti; field in class:LineSink
48 ti = ts;
75 String ts = ti.readLine();
104 if (ti.readLine() != null)
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DArrayTest.java36 transient int ti[] = {99, 98, 97, 96}; field in class:ArrayTest
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadDump.java35 public static void printThreadInfo(ThreadInfo ti) { argument
36 StringBuilder sb = new StringBuilder("\"" + ti.getThreadName() + "\"" +
37 " Id=" + ti.getThreadId() +
38 " in " + ti.getThreadState());
39 if (ti.getLockName() != null) {
40 sb.append(" on lock=" + ti.getLockName());
42 if (ti.isSuspended()) {
45 if (ti.isInNative()) {
49 if (ti.getLockOwnerName() != null) {
50 System.out.println(INDENT + " owned by " + ti
[all...]
/openjdk7/jdk/src/share/demo/management/FullThreadDump/
H A DThreadMonitor.java117 for (ThreadInfo ti : tinfos) {
118 printThreadInfo(ti);
129 for (ThreadInfo ti : tinfos) {
130 printThreadInfo(ti);
131 LockInfo[] syncs = ti.getLockedSynchronizers();
139 private void printThreadInfo(ThreadInfo ti) { argument
141 printThread(ti);
144 StackTraceElement[] stacktrace = ti.getStackTrace();
145 MonitorInfo[] monitors = ti.getLockedMonitors();
158 private void printThread(ThreadInfo ti) { argument
178 printMonitorInfo(ThreadInfo ti) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DLockDataConverter.java51 private LockDataConverter(ThreadInfo ti) { argument
53 this.lockInfo = ti.getLockInfo();
54 this.lockedSyncs = ti.getLockedSynchronizers();
122 static LockDataConverter newLockDataConverter(final ThreadInfo ti) { argument
124 result.lockInfo = ti.getLockInfo();
125 result.lockedSyncs = ti.getLockedSynchronizers();
H A DThreadInfoCompositeData.java47 private ThreadInfoCompositeData(ThreadInfo ti) { argument
48 this.threadInfo = ti;
72 public static CompositeData toCompositeData(ThreadInfo ti) { argument
73 ThreadInfoCompositeData ticd = new ThreadInfoCompositeData(ti);
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c274 td_thrinfo_t ti; local
277 memset(&ti, 0, sizeof(ti));
278 err = td_thr_get_info(th_p, &ti);
284 print_debug("thread_db : pthread %d (lwp %d)\n", ti.ti_tid, ti.ti_lid);
286 if (ptr->callback(ptr->ph, (pthread_t)ti.ti_tid, ti.ti_lid) != true)
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c272 td_thrinfo_t ti; local
275 memset(&ti, 0, sizeof(ti));
276 err = td_thr_get_info(th_p, &ti);
282 print_debug("thread_db : pthread %d (lwp %d)\n", ti.ti_tid, ti.ti_lid);
284 if (ptr->callback(ptr->ph, ti.ti_tid, ti.ti_lid) != true)
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp643 const TypeInt *ti = t->is_int(); local
644 if( ti->_hi < 0 || ti->_lo > 0 ) return TypeInt::ONE;
788 const TypeInt *ti = t->is_int(); local
789 if( ti->is_con() ) return TypeD::make( (double)ti->get_con() );
798 const TypeInt *ti = t->is_int(); local
799 if( ti->is_con() ) return TypeF::make( (float)ti->get_con() );
817 const TypeInt *ti local
1241 const TypeInt *ti = t->is_int(); local
1274 const TypeInt* ti = t->isa_int(); local
1319 const TypeInt* ti = t->isa_int(); local
[all...]
H A Ddivnode.cpp473 const TypeInt *ti = t->isa_int(); local
474 if( !ti ) return NULL;
475 if( !ti->is_con() ) return NULL;
476 jint i = ti->get_con(); // Get divisor
846 const TypeInt *ti = t->is_int(); local
850 if( in(0) && (ti->_hi < 0 || ti->_lo > 0) ) {
856 if( !ti->is_con() ) return NULL;
857 jint con = ti->get_con();
H A Dmachnode.cpp279 const TypeX* ti = t_index->isa_intptr_t(); local
280 if (ti == NULL) {
283 disp += ti->get_con() << scale;
H A Dmulnode.cpp639 const TypeInt *ti = phase->type( in(2) )->isa_int(); // shift count is an int local
640 return ( ti && ti->is_con() && ( ti->get_con() & ( BitsPerInt - 1 ) ) == 0 ) ? in(1) : this;
751 const TypeInt *ti = phase->type( in(2) )->isa_int(); // shift count is an int local
752 return ( ti && ti->is_con() && ( ti->get_con() & ( BitsPerLong - 1 ) ) == 0 ) ? in(1) : this;
992 const TypeInt* ti = TypeInt::make(lo, hi, MAX2(r1->_widen,r2->_widen)); local
996 if (r1->_lo >= 0) assert(ti
1013 const TypeInt *ti = phase->type( in(2) )->isa_int(); // shift count is an int local
1071 const TypeInt *ti = phase->type( in(2) )->isa_int(); local
1209 const TypeInt* ti = TypeInt::make(lo, hi, MAX2(r1->_widen,r2->_widen)); local
1241 const TypeInt *ti = phase->type( in(2) )->isa_int(); // shift count is an int local
[all...]
H A Dsubnode.cpp1047 const TypeInt *ti = CC->is_int(); local
1048 if( ti->is_con() ) { // Only 1 kind of condition codes set?
1050 int tmp = ((ti->get_con()&3) == (_test&3)) ? 1 : 0;
H A Dcfgnode.cpp938 const Type* ti = phase->type(in(i)); local
944 const TypePtr* tip = ti->make_ptr();
954 t = t->meet(ti);
H A Dparse2.cpp519 const TypeInt* ti = key_val->bottom_type()->isa_int(); local
520 if (ti != NULL) {
521 min_val = ti->_lo;
522 max_val = ti->_hi;
694 const TypeInt *ti = t->is_int(); local
695 if (ti->is_con()) {
696 int divisor = ti->get_con();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp571 TOOLINFO ti; local
573 ti.cbSize = sizeof(ti);
574 ti.uFlags = TTF_SUBCLASS;
575 ti.hwnd = warningWindow;
576 ti.hinst = AwtToolkit::GetInstance().GetModuleHandle();
577 ti.uId = 0;
578 ti.lpszText = warningString;
579 ti.rect.left = rect.left;
580 ti
[all...]

Completed in 102 milliseconds