HomeSort by: relevance | last modified time | path
    Searched refs:JThread (Results 1 - 20 of 20) sorted by relevancy

  /src/external/gpl3/binutils/dist/gprofng/src/
Experiment.h 45 struct JThread;
52 #define JTHREAD_DEFAULT ((JThread*)0)
53 #define JTHREAD_NONE ((JThread*)-1)
370 JThread *map_pckt_to_Jthread (uint32_t tid, hrtime_t tstamp);
371 JThread *get_jthread (uint32_t tid);
373 Vector<JThread*> *
585 Vector<JThread*> *jthreads; // master list of Java threads
586 Vector<JThread*> *jthreads_idx; // index in the master list
637 struct JThread
639 JThread *next
    [all...]
Exp_Layout.h 95 struct JThread *jthread_TBR; // pointer to JThread or NULL
parse.cc 535 JThread *jthread = jthreads_idx->fetch (md); local
536 if (jthread->tid < ttid)
538 else if (jthread->tid > ttid)
542 for (; jthread; jthread = jthread->next)
544 if (jthread->jenv == jenv)
546 jthread->end = ts;
553 JThread *jthread = new JThread local
574 JThread *jthread = new JThread; local
    [all...]
Expression.cc 537 JThread *jthread = ctx->exp->map_pckt_to_Jthread (thrid, tstamp); local
538 if (jthread != JTHREAD_NONE && jthread != JTHREAD_DEFAULT)
540 jthr_id = jthread->jthr_id;
1131 Vector<JThread*> *objs = NULL;
1146 JThread *jthread = (JThread *) (objs->fetch (i)); local
1147 jthr_id = jthread->jthr_id
    [all...]
DbeSession.h 302 Vector<JThread*> *match_java_threads (char *ustr, int matchParent,
IndexObject.cc 94 JThread *jthread = ctx->exp->map_pckt_to_Jthread (thrid, tstamp); local
95 if (jthread != JTHREAD_NONE && jthread != JTHREAD_DEFAULT)
97 sbIn->appendf (GTXT ("Process %llu, Thread %llu, JThread %llu \'%s\', Group \'%s\', Parent \'%s\'"),
100 (unsigned long long) jthread->jthr_id,
101 get_str(jthread->name, ""),
102 get_str(jthread->group_name, ""),
103 get_str(jthread->parent_name, ""));
DbeSession.cc 261 propNames_name_store (PROP_JTHREAD, NTXT ("JTHREAD"),
3356 Vector<JThread *> *
3372 Vector<JThread *> *ret = new Vector<JThread*>;
3377 JThread *jthread; local
3383 Vec_loop (JThread*, exp->get_jthreads (), index, jthread)
3387 name = jthread->parent_name;
3389 name = jthread->group_name
    [all...]
Experiment.cc 1384 jthreads = new Vector<JThread*>;
1385 jthreads_idx = new Vector<JThread*>;
5241 propName = NTXT ("JTHREAD");
6286 JThread *
6296 JThread *jthread = jthreads_idx->fetch (md); local
6297 if (jthread->tid < tid)
6299 else if (jthread->tid > tid)
6303 for (; jthread; jthread = jthread->next
6323 JThread *jthread = jthreads_idx->fetch (md); local
    [all...]
CallStack.cc 448 JThread *jthread = experiment->map_pckt_to_Jthread (thrid, tstamp); local
449 if (jthread == JTHREAD_NONE && jstack_size != 0 && node != NULL)
453 jthread = JTHREAD_DEFAULT;
455 dDscr->setObjValue (PROP_JTHREAD, idx, jthread);
456 if (jthread == JTHREAD_NONE || (jthread != JTHREAD_DEFAULT && jthread->is_system ()))
Dbe.cc 7470 JThread *jthread = (JThread*) packets->getObjValue (PROP_JTHREAD, idx); local
7471 if (jthread == JTHREAD_NONE || (jthread != NULL && jthread->is_system ()))
7609 JThread *jthread = NULL; local
7613 jthread = exp->get_jthread (entity_prop_val);
7614 has_java_threadnames = (jthread != JTHREAD_DEFAUL
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Experiment.h 45 struct JThread;
52 #define JTHREAD_DEFAULT ((JThread*)0)
53 #define JTHREAD_NONE ((JThread*)-1)
370 JThread *map_pckt_to_Jthread (uint32_t tid, hrtime_t tstamp);
371 JThread *get_jthread (uint32_t tid);
373 Vector<JThread*> *
585 Vector<JThread*> *jthreads; // master list of Java threads
586 Vector<JThread*> *jthreads_idx; // index in the master list
637 struct JThread
639 JThread *next
    [all...]
Exp_Layout.h 95 struct JThread *jthread_TBR; // pointer to JThread or NULL
parse.cc 535 JThread *jthread = jthreads_idx->fetch (md); local
536 if (jthread->tid < ttid)
538 else if (jthread->tid > ttid)
542 for (; jthread; jthread = jthread->next)
544 if (jthread->jenv == jenv)
546 jthread->end = ts;
553 JThread *jthread = new JThread local
574 JThread *jthread = new JThread; local
    [all...]
Expression.cc 537 JThread *jthread = ctx->exp->map_pckt_to_Jthread (thrid, tstamp); local
538 if (jthread != JTHREAD_NONE && jthread != JTHREAD_DEFAULT)
540 jthr_id = jthread->jthr_id;
1131 Vector<JThread*> *objs = NULL;
1146 JThread *jthread = (JThread *) (objs->fetch (i)); local
1147 jthr_id = jthread->jthr_id
    [all...]
DbeSession.h 302 Vector<JThread*> *match_java_threads (char *ustr, int matchParent,
IndexObject.cc 94 JThread *jthread = ctx->exp->map_pckt_to_Jthread (thrid, tstamp); local
95 if (jthread != JTHREAD_NONE && jthread != JTHREAD_DEFAULT)
97 sbIn->appendf (GTXT ("Process %llu, Thread %llu, JThread %llu \'%s\', Group \'%s\', Parent \'%s\'"),
100 (unsigned long long) jthread->jthr_id,
101 get_str(jthread->name, ""),
102 get_str(jthread->group_name, ""),
103 get_str(jthread->parent_name, ""));
DbeSession.cc 261 propNames_name_store (PROP_JTHREAD, NTXT ("JTHREAD"),
3356 Vector<JThread *> *
3372 Vector<JThread *> *ret = new Vector<JThread*>;
3377 JThread *jthread; local
3383 Vec_loop (JThread*, exp->get_jthreads (), index, jthread)
3387 name = jthread->parent_name;
3389 name = jthread->group_name
    [all...]
Experiment.cc 1384 jthreads = new Vector<JThread*>;
1385 jthreads_idx = new Vector<JThread*>;
5241 propName = NTXT ("JTHREAD");
6286 JThread *
6296 JThread *jthread = jthreads_idx->fetch (md); local
6297 if (jthread->tid < tid)
6299 else if (jthread->tid > tid)
6303 for (; jthread; jthread = jthread->next
6323 JThread *jthread = jthreads_idx->fetch (md); local
    [all...]
CallStack.cc 448 JThread *jthread = experiment->map_pckt_to_Jthread (thrid, tstamp); local
449 if (jthread == JTHREAD_NONE && jstack_size != 0 && node != NULL)
453 jthread = JTHREAD_DEFAULT;
455 dDscr->setObjValue (PROP_JTHREAD, idx, jthread);
456 if (jthread == JTHREAD_NONE || (jthread != JTHREAD_DEFAULT && jthread->is_system ()))
Dbe.cc 7470 JThread *jthread = (JThread*) packets->getObjValue (PROP_JTHREAD, idx); local
7471 if (jthread == JTHREAD_NONE || (jthread != NULL && jthread->is_system ()))
7609 JThread *jthread = NULL; local
7613 jthread = exp->get_jthread (entity_prop_val);
7614 has_java_threadnames = (jthread != JTHREAD_DEFAUL
    [all...]

Completed in 74 milliseconds