Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame^] | 1 | /* profiler.c */ |
| 2 | void profile_start(proftime_T *tm); |
| 3 | void profile_end(proftime_T *tm); |
| 4 | void profile_sub(proftime_T *tm, proftime_T *tm2); |
| 5 | char *profile_msg(proftime_T *tm); |
| 6 | float_T profile_float(proftime_T *tm); |
| 7 | void profile_setlimit(long msec, proftime_T *tm); |
| 8 | int profile_passed_limit(proftime_T *tm); |
| 9 | void profile_zero(proftime_T *tm); |
| 10 | void profile_divide(proftime_T *tm, int count, proftime_T *tm2); |
| 11 | void profile_add(proftime_T *tm, proftime_T *tm2); |
| 12 | void profile_self(proftime_T *self, proftime_T *total, proftime_T *children); |
| 13 | void profile_get_wait(proftime_T *tm); |
| 14 | void profile_sub_wait(proftime_T *tm, proftime_T *tma); |
| 15 | int profile_equal(proftime_T *tm1, proftime_T *tm2); |
| 16 | int profile_cmp(const proftime_T *tm1, const proftime_T *tm2); |
| 17 | void ex_profile(exarg_T *eap); |
| 18 | char_u *get_profile_name(expand_T *xp, int idx); |
| 19 | void set_context_in_profile_cmd(expand_T *xp, char_u *arg); |
| 20 | void profile_dump(void); |
| 21 | void prof_inchar_enter(void); |
| 22 | void prof_inchar_exit(void); |
| 23 | int prof_def_func(void); |
| 24 | void prof_sort_list(FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self); |
| 25 | void prof_func_line(FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self); |
| 26 | int prof_total_cmp(const void *s1, const void *s2); |
| 27 | int prof_self_cmp(const void *s1, const void *s2); |
| 28 | void func_do_profile(ufunc_T *fp); |
| 29 | void prof_child_enter(proftime_T *tm); |
| 30 | void prof_child_exit(proftime_T *tm); |
| 31 | void func_line_start(void *cookie); |
| 32 | void func_line_exec(void *cookie); |
| 33 | void func_line_end(void *cookie); |
| 34 | /* vim: set ft=c : */ |