Searched refs:tid (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_trace.c58 static p_dtrace_info DTrace_GetInfo(dtrace_id tid) { argument
59 DASSERT(tid < MAX_TRACES);
60 return &DTraceInfo[tid];
64 dtrace_id tid = NumTraces++; local
65 p_dtrace_info info = &DTraceInfo[tid];
72 return tid;
103 dtrace_id tid; local
107 for ( tid = 0; tid < NumTraces; tid
179 dtrace_id tid; local
195 dtrace_id tid; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A DosThread_linux.hpp68 void set_pthread_id(pthread_t tid) { argument
69 _pthread_id = tid;
H A Djsig.c52 static pthread_t tid = 0; variable
70 if (tid != pthread_self()) {
209 tid = pthread_self();
H A Dos_linux.hpp200 static int pthread_getcpuclockid(pthread_t tid, clockid_t *clock_id) { argument
201 return _pthread_getcpuclockid ? _pthread_getcpuclockid(tid, clock_id) : -1;
/openjdk7/jdk/src/share/native/sun/management/
H A DThreadImpl.c69 (JNIEnv *env, jclass cls, jlong tid)
71 return jmm_interface->GetThreadCpuTimeWithKind(env, tid, JNI_TRUE /* user+sys */);
84 (JNIEnv *env, jclass cls, jlong tid)
86 return jmm_interface->GetThreadCpuTimeWithKind(env, tid, JNI_FALSE /* user */);
129 (JNIEnv *env, jobject dummy, jlong tid)
132 value.j = tid;
68 Java_sun_management_ThreadImpl_getThreadTotalCpuTime0(JNIEnv *env, jclass cls, jlong tid) argument
83 Java_sun_management_ThreadImpl_getThreadUserCpuTime0(JNIEnv *env, jclass cls, jlong tid) argument
128 Java_sun_management_ThreadImpl_resetContentionTimes0(JNIEnv *env, jobject dummy, jlong tid) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.inline.hpp46 inline void G1RemSet::par_write_ref(HeapRegion* from, T* p, int tid) { argument
69 to->rem_set()->add_reference(p, tid);
H A DheapRegionRemSet.hpp137 void add_reference(OopOrNarrowOopStar from, int tid);
247 void add_reference(OopOrNarrowOopStar from, int tid) { argument
248 _other_regions.add_reference(from, tid);
H A Dg1RemSet.hpp104 template <class T> void par_write_ref(HeapRegion* from, T* p, int tid);
H A DheapRegionRemSet.cpp395 void OtherRegionsTable::add_reference(OopOrNarrowOopStar from, int tid) { argument
411 _from_card_cache[tid][cur_hrs_ind]);
414 if (from_card == _from_card_cache[tid][cur_hrs_ind]) {
421 _from_card_cache[tid][cur_hrs_ind] = from_card;
471 gclog_or_tty->print_cr(" [tid %d] sparse table entry "
473 tid, from_hrs_ind, cur_hrs_ind);
767 for (int tid = 0; tid < HeapRegionRemSet::num_par_rem_sets(); tid++) {
768 int fcc_ent = _from_card_cache[tid][hr_in
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A DosThread_bsd.hpp87 void set_pthread_id(pthread_t tid) { argument
88 _pthread_id = tid;
H A Djsig.c49 static pthread_t tid = 0; variable
67 if (tid != pthread_self()) {
207 tid = pthread_self();
H A Dos_bsd.hpp214 static int pthread_getcpuclockid(pthread_t tid, clockid_t *clock_id) { argument
215 return _pthread_getcpuclockid ? _pthread_getcpuclockid(tid, clock_id) : -1;
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dmethod_invocation_tree.d119 tid, self->indent, "", self->class_name,
126 printf("%-10u%*sJNI:%s\n", tid, self->indent+1, "", probename);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp221 static int thr_getstate(thread_t tid, int *flag, unsigned *lwp, stack_t *ss, gregset_t rs) argument
222 { return _thr_getstate(tid, flag, lwp, ss, rs); }
226 static int thr_setstate(thread_t tid, int flag, gregset_t rs) { return _thr_setstate(tid, flag, rs); } argument
229 static int thr_setmutator(thread_t tid, int enabled) { return _thr_setmutator(tid, enabled); } argument
232 static int thr_suspend_mutator(thread_t tid) { return _thr_suspend_mutator(tid); } argument
235 static int thr_continue_mutator(thread_t tid) { return _thr_continue_mutator(tid); } argument
[all...]
H A Djsig.c52 static thread_t tid = 0; variable
88 if (tid != thr_self()) {
248 tid = thr_self();
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c146 THREAD_T tid; local
169 tid = GET_THREAD_ID();
178 (int)tid);
H A Derror_messages.c318 THREAD_T tid = GET_THREAD_ID(); local
326 (int)(intptr_t)pid, (int)(intptr_t)tid, (int)(intptr_t)tid);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebugger.java52 public long[] getThreadIntegerRegisterSet(int tid) throws DebuggerException; argument
H A DProcDebuggerLocal.java402 public synchronized long[] getThreadIntegerRegisterSet(int tid) { argument
404 return getThreadIntegerRegisterSet0(tid);
598 private native long[] getThreadIntegerRegisterSet0(long tid) throws DebuggerException; argument
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java282 final long tid = Thread.currentThread().getId(); field in class:ReentrantReadWriteLock.Sync.HoldCounter
425 if (rh == null || rh.tid != current.getId())
483 if (rh == null || rh.tid != current.getId())
520 if (rh == null || rh.tid != current.getId()) {
541 if (rh == null || rh.tid != current.getId())
597 if (rh == null || rh.tid != current.getId())
648 if (rh != null && rh.tid == current.getId())
/openjdk7/hotspot/agent/src/os/bsd/
H A DMacosxDebuggerLocal.m286 thread_t tid;
295 tid = lookupThreadFromThreadId(gTask, thread_id);
297 result = thread_get_state(tid, HSDB_THREAD_STATE, (thread_state_t)&state, &count);
301 printf("getregs: thread_get_state(%d) failed (%d)\n", tid, result);
402 JNIEnv *env, jobject this_obj, jint tid)
405 printf("translateTID0 called on tid = 0x%x\n", (int)tid);
411 foreign_tid = tid;
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dconc.js221 * @param tid timeout ID returned from setTimeout
223 function clearTimeout(tid) {
225 tid.interrupt();
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogRecord.java148 long tid = Thread.currentThread().getId();
149 if (tid < MIN_SEQUENTIAL_THREAD_ID) {
150 return (int) tid;
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c985 thread_t tid; local
987 if (thr_create(NULL, stack_size, (void *(*)(void *))continuation, args, flags, &tid) == 0) {
989 thr_join(tid, NULL, &tmp);
996 pthread_t tid; local
1005 if (pthread_create(&tid, &attr, (void *(*)(void*))continuation, (void*)args) == 0) {
1007 pthread_join(tid, &tmp);
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java205 private long tid; field in class:Thread
409 tid = nextThreadID();
1714 return tid;

Completed in 204 milliseconds

12