Searched defs:_ProfilerEntry (Results 1 – 1 of 1) sorted by relevance
29 typedef struct _ProfilerEntry { struct30 rotating_node_t header;31 PyObject *userObj; /* PyCodeObject, or a descriptive str for builtins */32 PyTime_t tt; /* total time in this entry */33 PyTime_t it; /* inline time in this entry (not in subcalls) */34 long callcount; /* how many times this was called */35 long recursivecallcount; /* how many times called recursively */36 long recursionLevel;37 rotating_node_t *calls;