Lines Matching defs:keymacro_node_t
76 struct keymacro_node_t {
81 struct keymacro_node_t *next; /* ptr to next char of this key */
82 struct keymacro_node_t *sibling;/* ptr to another key with same prefix*/
85 static int node_trav(EditLine *, keymacro_node_t *, wchar_t *,
87 static int node__try(EditLine *, keymacro_node_t *,
89 static keymacro_node_t *node__get(wint_t);
90 static void node__free(keymacro_node_t *);
91 static void node__put(EditLine *, keymacro_node_t *);
92 static int node__delete(EditLine *, keymacro_node_t **,
95 keymacro_node_t *, size_t);
96 static int node_enum(EditLine *, keymacro_node_t *, size_t);
282 node_trav(EditLine *el, keymacro_node_t *ptr, wchar_t *ch,
317 node__try(EditLine *el, keymacro_node_t *ptr, const wchar_t *str,
322 keymacro_node_t *xm;
376 node__delete(EditLine *el, keymacro_node_t **inptr, const wchar_t *str)
378 keymacro_node_t *ptr;
379 keymacro_node_t *prev_ptr = NULL;
384 keymacro_node_t *xm;
424 node__put(EditLine *el, keymacro_node_t *ptr)
451 * Returns pointer to a keymacro_node_t for ch.
453 static keymacro_node_t *
456 keymacro_node_t *ptr;
470 node__free(keymacro_node_t *k)
484 node_lookup(EditLine *el, const wchar_t *str, keymacro_node_t *ptr,
537 node_enum(EditLine *el, keymacro_node_t *ptr, size_t cnt)