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