Lines Matching refs:keycode
272 has_key_internal(int keycode, TRIES * tp) in has_key_internal() argument
276 else if (tp->value == keycode) in has_key_internal()
279 return (has_key_internal(keycode, tp->child) in has_key_internal()
280 || has_key_internal(keycode, tp->sibling)); in has_key_internal()
285 TINFO_HAS_KEY(SCREEN *sp, int keycode) in TINFO_HAS_KEY() argument
288 has_key_internal(keycode, sp->_keytry) : 0; in TINFO_HAS_KEY()
292 NCURSES_SP_NAME(has_key) (NCURSES_SP_DCLx int keycode) in NCURSES_SP_NAME()
294 T((T_CALLED("has_key(%p,%d)"), (void *) SP_PARM, keycode)); in NCURSES_SP_NAME()
295 returnCode(SP != 0 ? has_key_internal(keycode, SP_PARM->_keytry) : FALSE); in NCURSES_SP_NAME()
300 has_key(int keycode) in has_key() argument
302 return NCURSES_SP_NAME(has_key) (CURRENT_SCREEN, keycode); in has_key()