• Home
  • Raw
  • Download

Lines Matching refs:ProfilerObject

88 } ProfilerObject;  typedef
551 do_stop(ProfilerObject *self);
554 flush_data(ProfilerObject *self) in flush_data()
583 pack_packed_int(ProfilerObject *self, int value) in pack_packed_int()
603 pack_modified_packed_int(ProfilerObject *self, int value, in pack_modified_packed_int()
624 pack_string(ProfilerObject *self, const char *s, Py_ssize_t len) in pack_string()
643 pack_add_info(ProfilerObject *self, const char *s1, const char *s2) in pack_add_info()
660 pack_define_file(ProfilerObject *self, int fileno, const char *filename) in pack_define_file()
676 pack_define_func(ProfilerObject *self, int fileno, int lineno, in pack_define_func()
695 pack_line_times(ProfilerObject *self) in pack_line_times()
708 pack_frame_times(ProfilerObject *self) in pack_frame_times()
721 pack_enter(ProfilerObject *self, int fileno, int tdelta, int lineno) in pack_enter()
736 pack_exit(ProfilerObject *self, int tdelta) in pack_exit()
750 pack_lineno(ProfilerObject *self, int lineno) in pack_lineno()
760 pack_lineno_tdelta(ProfilerObject *self, int lineno, int tdelta) in pack_lineno_tdelta()
772 get_fileno(ProfilerObject *self, PyCodeObject *fcode) in get_fileno()
832 get_tdelta(ProfilerObject *self) in get_tdelta()
863 tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, in tracer_callback()
967 do_start(ProfilerObject *self) in do_start()
978 do_stop(ProfilerObject *self) in do_stop()
994 is_available(ProfilerObject *self) in is_available()
1015 profiler_addinfo(ProfilerObject *self, PyObject *args) in profiler_addinfo()
1038 profiler_close(ProfilerObject *self) in profiler_close()
1052 profiler_fileno(ProfilerObject *self) in profiler_fileno()
1067 profiler_runcall(ProfilerObject *self, PyObject *args) in profiler_runcall()
1091 profiler_runcode(ProfilerObject *self, PyObject *args) in profiler_runcode()
1129 profiler_start(ProfilerObject *self, PyObject *args) in profiler_start()
1146 profiler_stop(ProfilerObject *self, PyObject *args) in profiler_stop()
1164 profiler_dealloc(ProfilerObject *self) in profiler_dealloc()
1186 {"frametimings", T_LONG, offsetof(ProfilerObject, linetimings), READONLY},
1187 {"lineevents", T_LONG, offsetof(ProfilerObject, lineevents), READONLY},
1188 {"linetimings", T_LONG, offsetof(ProfilerObject, linetimings), READONLY},
1193 profiler_get_closed(ProfilerObject *self, void *closure) in profiler_get_closed()
1229 (int) sizeof(ProfilerObject), /* tp_basicsize */
1427 write_header(ProfilerObject *self) in write_header()
1499 ProfilerObject *self = NULL; in hotshot_profiler()
1505 self = PyObject_New(ProfilerObject, &ProfilerType); in hotshot_profiler()
1560 ProfilerObject *self = (ProfilerObject *) result; in hotshot_coverage()