Home
last modified time | relevance | path

Searched refs:TRIES (Results 1 – 8 of 8) sorted by relevance

/dragonfly/contrib/ncurses/ncurses/base/
H A Dtries.c50 _nc_expand_try(TRIES * tree, unsigned code, int *count, size_t len) in NCURSES_EXPORT()
52 TRIES *ptr = tree; in NCURSES_EXPORT()
91 _nc_remove_key(TRIES ** tree, unsigned code) in _nc_remove_key()
107 TRIES *to_free = *tree; in _nc_remove_key()
123 _nc_remove_string(TRIES ** tree, const char *string) in _nc_remove_string()
135 TRIES *to_free = *tree; in _nc_remove_string()
H A Dkey_defined.c39 find_definition(TRIES * tree, const char *str) in find_definition()
41 TRIES *ptr; in find_definition()
H A Dlib_getch.c683 TRIES *ptr; in kgetch()
H A Dlib_set_term.c101 _nc_free_keytry(TRIES * kt) in _nc_free_keytry()
/dragonfly/contrib/ncurses/ncurses/tinfo/
H A Dadd_tries.c49 _nc_add_to_try(TRIES ** tree, const char *str, unsigned code) in NCURSES_EXPORT()
51 TRIES *ptr, *savedptr; in NCURSES_EXPORT()
79 if ((ptr->sibling = typeCalloc(TRIES, 1)) == 0) { in NCURSES_EXPORT()
91 savedptr = ptr = (*tree) = typeCalloc(TRIES, 1); in NCURSES_EXPORT()
104 ptr->child = typeCalloc(TRIES, 1); in NCURSES_EXPORT()
H A Dlib_options.c270 has_key_internal(int keycode, TRIES * tp) in has_key_internal()
/dragonfly/contrib/ncurses/ncurses/trace/
H A Dtrace_tries.c46 recur_tries(TRIES * tree, unsigned level) in recur_tries()
70 _nc_trace_tries(TRIES * tree) in _nc_trace_tries()
/dragonfly/contrib/ncurses/ncurses/
H A Dcurses.priv.h291 #define TRIES struct tries macro
292 typedef TRIES {
293 TRIES *child; /* ptr to child. NULL if none */
294 TRIES *sibling; /* ptr to sibling. NULL if none */
297 #undef TRIES
298 } TRIES; typedef
1137 TRIES *_keytry; /* "Try" for use with keypad mode */
1138 TRIES *_key_ok; /* Disabled keys via keyok(,FALSE) */
2235 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
2236 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
[all …]