Lines Matching defs:tp

104   Thread* tp = Thread::current();
105 if (tp != NULL && tp->is_Java_thread()) {
106 JavaThread* jtp = (JavaThread*) tp;
267 void* operator new(size_t size, ThreadProfiler* tp);
376 void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp){
377 void* result = (void*) tp->area_top;
378 tp->area_top += size;
380 if (tp->area_top > tp->area_limit) {
857 for (JavaThread* tp = Threads::first(); tp != NULL; tp = tp->next()) {
858 if (tp->is_Compiler_thread()) {
860 CompilerThread* cthread = (CompilerThread*)tp;
872 ThreadProfiler* pp = tp->get_thread_profiler();
874 MutexLockerEx ml(tp->SR_lock(), Mutex::_no_safepoint_check_flag);
875 if (!tp->is_external_suspend() && !tp->is_exiting()) {
876 tp->set_external_suspend();
877 threadsList[suspendedthreadcount++] = tp;
887 JavaThread *tp = threadsList[j];
888 if (tp) {
889 tp->java_suspend();
895 JavaThread *tp = threadsList[i];
896 if (tp) {
897 ThreadProfiler* pp = tp->get_thread_profiler();
906 if (tp->blocked_on_compilation()) {
910 pp->record_tick(tp);
914 tp->java_resume();
1254 for (JavaThread* tp = Threads::first(); tp != NULL; tp = tp->next()) {
1255 ThreadProfiler* pp = tp->get_thread_profiler();
1501 for (JavaThread* tp = Threads::first(); tp != NULL; tp = tp->next()) {
1502 ThreadProfiler* pp = tp->get_thread_profiler();
1504 pp->print(tp->get_thread_name());
1549 void FlatProfiler::interval_record_thread(ThreadProfiler* tp) {
1550 IntervalData id = tp->interval_data();
1552 tp->interval_data_ref()->reset();
1600 for (JavaThread* tp = Threads::first(); tp != NULL; tp = tp->next()) {
1601 ThreadProfiler* pp = tp->get_thread_profiler();