Searched refs:fkey (Results 26 - 33 of 33) sorted by relevance

12

/freebsd-13-stable/contrib/dialog/
H A Dformbox.c504 int fkey; local
660 key = dlg_mouse_wgetch((state == sTEXT) ? form : dialog, &fkey);
661 if (dlg_result_key(key, fkey, &result))
665 if (!fkey) {
677 if (fkey) {
867 fkey, first);
H A Dfselect.c588 int fkey = FALSE; local
765 key = dlg_mouse_wgetch((state == sTEXT) ? w_text : dialog, &fkey);
766 if (dlg_result_key(key, fkey, &result))
772 fkey = TRUE;
775 if (fkey) {
898 int edit = dlg_edit_string(input, &offset, key, fkey, first);
H A Ddialog.h418 bool (*handle_getc)(struct _dlg_callback *p, int ch, int fkey, int *result);
729 extern bool dlg_edit_string(char * /*string*/, int * /*offset*/, int /*key*/, int /*fkey*/, bool /*force*/);
760 extern int dlg_getc(WINDOW * /*win*/, int * /*fkey*/);
761 extern int dlg_getc_callbacks(int /*ch*/, int /*fkey*/, int * /*result*/);
853 extern void dlg_trace_chr(int /*ch*/, int /*fkey*/);
860 #define dlg_trace_chr(ch,fkey) /* nothing */
913 extern int dlg_mouse_wgetch (WINDOW * /*win*/, int * /*fkey*/);
914 extern int dlg_mouse_wgetch_nowait (WINDOW * /*win*/, int * /*fkey*/);
/freebsd-13-stable/crypto/openssl/apps/
H A Dx509.c160 EVP_PKEY *Upkey = NULL, *CApkey = NULL, *fkey = NULL; local
481 fkey = load_pubkey(fkeyfile, keyformat, 0, NULL, e, "Forced key");
482 if (fkey == NULL)
577 if (fkey != NULL) {
578 X509_set_pubkey(x, fkey);
899 EVP_PKEY_free(fkey);
/freebsd-13-stable/sys/dev/kbd/
H A Dkbd.c67 static u_char *genkbd_get_fkeystr(keyboard_t *kbd, int fkey, size_t *len);
1099 genkbd_get_fkeystr(keyboard_t *kbd, int fkey, size_t *len) argument
1103 fkey -= F_FN;
1104 if (fkey > kbd->kb_fkeytab_size)
1106 *len = kbd->kb_fkeytab[fkey].len;
1107 return (kbd->kb_fkeytab[fkey].str);
1431 /* XXX: return fkey string for the FKEY? */
/freebsd-13-stable/sys/dev/syscons/
H A Dsyscons.c2102 static struct fkeytab fkey; local
2118 if (fkeycp < fkey.len)
2119 return fkey.str[fkeycp++];
2129 fkey.len = strlen(p);
2130 bcopy(p, fkey.str, fkey.len);
2132 return fkey.str[0];
2136 fkey.len = fkeycp;
2137 if ((p != NULL) && (fkey.len > 0)) {
2138 bcopy(p, fkey
[all...]
/freebsd-13-stable/contrib/nvi/vi/
H A Dvi.c1127 ARG_CHAR_T fkey,
1133 ev.e_c = fkey;
1125 v_count( SCR *sp, ARG_CHAR_T fkey, u_long *countp) argument
/freebsd-13-stable/stand/ficl/
H A Dloader.c968 /* fkey - get a character from a file
970 * fkey ( file -- char )
972 static void fkey(FICL_VM *pVM) function
1026 dictAppendWord(dp, "fkey", fkey, FW_DEFAULT);

Completed in 184 milliseconds

12