Lines Matching refs:sv
410 static void sclp_get_input(struct gds_subvector *sv) in sclp_get_input() argument
415 str = (unsigned char *) (sv + 1); in sclp_get_input()
416 count = sv->length - sizeof(*sv); in sclp_get_input()
427 static inline void sclp_eval_selfdeftextmsg(struct gds_subvector *sv) in sclp_eval_selfdeftextmsg() argument
431 end = (void *) sv + sv->length; in sclp_eval_selfdeftextmsg()
432 for (sv = sv + 1; (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_selfdeftextmsg()
433 if (sv->key == 0x30) in sclp_eval_selfdeftextmsg()
434 sclp_get_input(sv); in sclp_eval_selfdeftextmsg()
439 struct gds_subvector *sv; in sclp_eval_textcmd() local
443 for (sv = (struct gds_subvector *) (v + 1); in sclp_eval_textcmd()
444 (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_textcmd()
445 if (sv->key == GDS_KEY_SELFDEFTEXTMSG) in sclp_eval_textcmd()
446 sclp_eval_selfdeftextmsg(sv); in sclp_eval_textcmd()