Lines Matching refs:sv
406 static void sclp_get_input(struct gds_subvector *sv) in sclp_get_input() argument
411 str = (unsigned char *) (sv + 1); in sclp_get_input()
412 count = sv->length - sizeof(*sv); in sclp_get_input()
423 static inline void sclp_eval_selfdeftextmsg(struct gds_subvector *sv) in sclp_eval_selfdeftextmsg() argument
427 end = (void *) sv + sv->length; in sclp_eval_selfdeftextmsg()
428 for (sv = sv + 1; (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_selfdeftextmsg()
429 if (sv->key == 0x30) in sclp_eval_selfdeftextmsg()
430 sclp_get_input(sv); in sclp_eval_selfdeftextmsg()
435 struct gds_subvector *sv; in sclp_eval_textcmd() local
439 for (sv = (struct gds_subvector *) (v + 1); in sclp_eval_textcmd()
440 (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_textcmd()
441 if (sv->key == GDS_KEY_SELFDEFTEXTMSG) in sclp_eval_textcmd()
442 sclp_eval_selfdeftextmsg(sv); in sclp_eval_textcmd()