Searched defs:tinfo (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCurrentFrameChangedEvent.java44 private ThreadInfo tinfo; field in class:CurrentFrameChangedEvent
48 public CurrentFrameChangedEvent(Object source, ThreadInfo tinfo, argument
51 this.tinfo = tinfo;
57 return tinfo == null? null : tinfo.thread();
61 return tinfo;
H A DStackTraceTool.java52 private ThreadInfo tinfo; field in class:StackTraceTool
98 if (e.getInvalidate() || tinfo != ti) {
99 tinfo = ti;
168 private void showStack(ThreadInfo tinfo, int selectFrame) { argument
169 StackTraceListModel model = new StackTraceListModel(tinfo);
178 private final ThreadInfo tinfo; field in class:StackTraceTool.StackTraceListModel
180 public StackTraceListModel(ThreadInfo tinfo) { argument
181 this.tinfo = tinfo;
187 return tinfo
[all...]
H A DContextManager.java165 public int getCurrentFrameIndex(ThreadInfo tinfo) { argument
166 if (tinfo == null) {
169 Integer currentFrame = (Integer)tinfo.getUserObject();
195 ThreadInfo tinfo = runtime.threadInfo(t);
196 if (tinfo == null) {
199 int maxIndex = tinfo.getFrameCount()-1;
200 int oldIndex = getCurrentFrameIndex(tinfo);
208 setCurrentFrameIndex(tinfo, newIndex);
213 private void setCurrentFrameIndex(ThreadInfo tinfo, int index) { argument
214 tinfo
230 getCurrentFrame(ThreadInfo tinfo) argument
274 notifyCurrentFrameChanged(ThreadInfo tinfo, int index, boolean invalidate) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java135 ThreadInfo tinfo = getThreadInfo(tr);
136 setCurrentThreadInfo(tinfo);
140 static void setCurrentThreadInfo(ThreadInfo tinfo) { argument
141 current = tinfo;
193 ThreadInfo tinfo = null;
199 tinfo = getThreadInfo(threadId);
201 tinfo = null;
203 return tinfo;
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c192 updateStats(TraceInfo *tinfo) argument
194 tinfo->totalCount++;
195 tinfo->useCount++;
196 return tinfo;
210 TraceInfo *tinfo; local
212 tinfo = (TraceInfo*)calloc(1, sizeof(TraceInfo));
213 if ( tinfo == NULL ) {
218 tinfo->trace = *trace;
219 tinfo->trace.flavor = flavor;
220 tinfo
252 TraceInfo *tinfo; local
302 TraceInfo *tinfo; local
340 tagObjectWithTraceInfo(jvmtiEnv *jvmti, jobject object, TraceInfo *tinfo) argument
355 TraceInfo *tinfo; local
368 TraceInfo *tinfo; local
425 TraceInfo *tinfo; local
459 TraceInfo *tinfo; local
581 printTraceInfo(jvmtiEnv *jvmti, int index, TraceInfo* tinfo) argument
692 TraceInfo *tinfo; local
726 TraceInfo *tinfo; local
739 TraceInfo *tinfo; local
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5348 struct thread_basic_info tinfo; local
5354 kr = thread_info(mach_thread, THREAD_BASIC_INFO, (thread_info_t)&tinfo, &tcount);
5360 nanos = ((jlong) tinfo.system_time.seconds + tinfo.user_time.seconds) * (jlong)1000000000;
5361 nanos += ((jlong) tinfo.system_time.microseconds + (jlong) tinfo.user_time.microseconds) * (jlong)1000;
5364 return ((jlong)tinfo.user_time.seconds * 1000000000) + ((jlong)tinfo.user_time.microseconds * (jlong)1000);

Completed in 1129 milliseconds