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