• Home
  • Raw
  • Download

Lines Matching defs:h

81 #define	HNEXT(h, ev)		(*(h)->h_next)((h)->h_ref, ev)  argument
82 #define HFIRST(h, ev) (*(h)->h_first)((h)->h_ref, ev) argument
83 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev) argument
84 #define HLAST(h, ev) (*(h)->h_last)((h)->h_ref, ev) argument
85 #define HCURR(h, ev) (*(h)->h_curr)((h)->h_ref, ev) argument
86 #define HSET(h, ev, n) (*(h)->h_set)((h)->h_ref, ev, n) argument
87 #define HCLEAR(h, ev) (*(h)->h_clear)((h)->h_ref, ev) argument
88 #define HENTER(h, ev, str) (*(h)->h_enter)((h)->h_ref, ev, str) argument
89 #define HADD(h, ev, str) (*(h)->h_add)((h)->h_ref, ev, str) argument
90 #define HDEL(h, ev, n) (*(h)->h_del)((h)->h_ref, ev, n) argument
215 history_t *h = (history_t *) p; in history_def_first() local
235 history_t *h = (history_t *) p; in history_def_last() local
255 history_t *h = (history_t *) p; in history_def_next() local
280 history_t *h = (history_t *) p; in history_def_prev() local
306 history_t *h = (history_t *) p; in history_def_curr() local
327 history_t *h = (history_t *) p; in history_def_set() local
354 history_t *h = (history_t *) p; in history_set_nth() local
378 history_t *h = (history_t *) p; in history_def_add() local
402 history_deldata_nth(history_t *h, TYPE(HistEvent) *ev, in history_deldata_nth()
427 history_t *h = (history_t *) p; in history_def_del() local
442 history_def_delete(history_t *h, in history_def_delete()
465 history_def_insert(history_t *h, TYPE(HistEvent) *ev, const Char *str) in history_def_insert()
499 history_t *h = (history_t *) p; in history_def_enter() local
526 history_t *h = (history_t *) h_malloc(sizeof(*h)); in history_def_init() local
551 history_t *h = (history_t *) p; in history_def_clear() local
616 history_setsize(TYPE(History) *h, TYPE(HistEvent) *ev, int num) in history_setsize()
636 history_getsize(TYPE(History) *h, TYPE(HistEvent) *ev) in history_getsize()
655 history_setunique(TYPE(History) *h, TYPE(HistEvent) *ev, int uni) in history_setunique()
671 history_getunique(TYPE(History) *h, TYPE(HistEvent) *ev) in history_getunique()
686 history_set_fun(TYPE(History) *h, TYPE(History) *nh) in history_set_fun()
733 history_load(TYPE(History) *h, const char *fname) in history_load()
794 history_save(TYPE(History) *h, const char *fname) in history_save()
846 history_prev_event(TYPE(History) *h, TYPE(HistEvent) *ev, int num) in history_prev_event()
860 history_next_evdata(TYPE(History) *h, TYPE(HistEvent) *ev, int num, void **d) in history_next_evdata()
880 history_next_event(TYPE(History) *h, TYPE(HistEvent) *ev, int num) in history_next_event()
897 history_prev_string(TYPE(History) *h, TYPE(HistEvent) *ev, const Char *str) in history_prev_string()
915 history_next_string(TYPE(History) *h, TYPE(HistEvent) *ev, const Char *str) in history_next_string()