paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1).
More...
|
trace_return_t | pajeInitTrace (const char *filename, int rank, gtg_flag_t flags, int fmt) |
| Initialize a VITE trace ( *.ept) More...
|
|
char * | pajeGetName (int rk) |
| Function to get the name of the file containing all the data for the proc of rank rk. More...
|
|
trace_return_t | pajeSetCompress (int val) |
| Enable trace compression. More...
|
|
trace_return_t | pajeAddContType (const char *alias, const char *contType, const char *name) |
| Add a Container Type. More...
|
|
trace_return_t | pajeAddStateType (const char *alias, const char *contType, const char *name) |
| Add a State Type. More...
|
|
trace_return_t | pajeAddEventType (const char *alias, const char *contType, const char *name) |
| Add an Event Type. More...
|
|
trace_return_t | pajeAddLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType) |
| Add a Link Type. More...
|
|
trace_return_t | pajeAddVarType (const char *alias, const char *contType, const char *name) |
| Add a Variable Type. More...
|
|
trace_return_t | pajeAddEntityValue (const char *alias, const char *entType, const char *name, const char *color) |
| Add an Entity Value. More...
|
|
trace_return_t | pajeAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file) |
| Add a Container (VITE format). More...
|
|
trace_return_t | pajeSeqAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name) |
| Add a Container (PAJE format). More...
|
|
trace_return_t | pajeDestroyContainer (varPrec time, const char *name, const char *type) |
| Destroy a Container. More...
|
|
trace_return_t | pajeSetState (varPrec time, const char *type, const char *cont, const char *val) |
| Set the State of a Container. More...
|
|
trace_return_t | pajePushState (varPrec time, const char *type, const char *cont, const char *val) |
| Save the current State on a stack and change the State of a Container. More...
|
|
trace_return_t | pajePopState (varPrec time, const char *type, const char *cont) |
| Revert the State of a Container to its previous value. More...
|
|
trace_return_t | pajeAddEvent (varPrec time, const char *type, const char *cont, const char *val) |
| Add an Event. More...
|
|
trace_return_t | pajeStartLink (varPrec time, const char *type, const char *cont, const char *src, const char *val, const char *key) |
| Start a link. More...
|
|
trace_return_t | pajeEndLink (varPrec time, const char *type, const char *cont, const char *dest, const char *val, const char *key) |
| Start a link. More...
|
|
trace_return_t | pajeSetVar (varPrec time, const char *type, const char *cont, varPrec val) |
| Set a Variable value. More...
|
|
trace_return_t | pajeAddVar (varPrec time, const char *type, const char *cont, varPrec val) |
| Add a value to a Variable. More...
|
|
trace_return_t | pajeSubVar (varPrec time, const char *type, const char *cont, varPrec val) |
| Substract a value from a Variable. More...
|
|
trace_return_t | pajeAddComment (const char *comment) |
| Add some Comment in Trace file. More...
|
|
trace_return_t | pajeEndTrace () |
| Finalize a PAJE trace. More...
|
|
trace_return_t | viteEndTrace () |
| Finalize a VITE trace. More...
|
|
void | pajeEventDefAddParam (enum gtg_paje_evtdef_e event, const char *name, enum gtg_paje_fieldtype_e type) |
|