Lines Matching refs:sv
402 static void sclp_get_input(struct gds_subvector *sv) in sclp_get_input() argument
407 str = (unsigned char *) (sv + 1); in sclp_get_input()
408 count = sv->length - sizeof(*sv); in sclp_get_input()
419 static inline void sclp_eval_selfdeftextmsg(struct gds_subvector *sv) in sclp_eval_selfdeftextmsg() argument
423 end = (void *) sv + sv->length; in sclp_eval_selfdeftextmsg()
424 for (sv = sv + 1; (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_selfdeftextmsg()
425 if (sv->key == 0x30) in sclp_eval_selfdeftextmsg()
426 sclp_get_input(sv); in sclp_eval_selfdeftextmsg()
431 struct gds_subvector *sv; in sclp_eval_textcmd() local
435 for (sv = (struct gds_subvector *) (v + 1); in sclp_eval_textcmd()
436 (void *) sv < end; sv = (void *) sv + sv->length) in sclp_eval_textcmd()
437 if (sv->key == GDS_KEY_SELFDEFTEXTMSG) in sclp_eval_textcmd()
438 sclp_eval_selfdeftextmsg(sv); in sclp_eval_textcmd()