Home
last modified time | relevance | path

Searched refs:optinfo (Results 1 – 3 of 3) sorted by relevance

/external/iptables/extensions/
Dlibip6t_hbh.c102 struct ip6t_opts *optinfo = cb->data; in hbh_parse() local
108 optinfo->invflags |= IP6T_OPTS_INV_LEN; in hbh_parse()
109 optinfo->flags |= IP6T_OPTS_LEN; in hbh_parse()
112 optinfo->optsnr = parse_options(cb->arg, optinfo->opts); in hbh_parse()
113 optinfo->flags |= IP6T_OPTS_OPTS; in hbh_parse()
135 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; in hbh_print() local
138 if (optinfo->flags & IP6T_OPTS_LEN) { in hbh_print()
140 printf(":%s", optinfo->invflags & IP6T_OPTS_INV_LEN ? "!" : ""); in hbh_print()
141 printf("%u", optinfo->hdrlen); in hbh_print()
143 if (optinfo->flags & IP6T_OPTS_OPTS) printf(" opts"); in hbh_print()
[all …]
Dlibip6t_dst.c110 struct ip6t_opts *optinfo = cb->data; in dst_parse() local
116 optinfo->invflags |= IP6T_OPTS_INV_LEN; in dst_parse()
117 optinfo->flags |= IP6T_OPTS_LEN; in dst_parse()
120 optinfo->optsnr = parse_options(cb->arg, optinfo->opts); in dst_parse()
121 optinfo->flags |= IP6T_OPTS_OPTS; in dst_parse()
145 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; in dst_print() local
148 if (optinfo->flags & IP6T_OPTS_LEN) in dst_print()
150 optinfo->invflags & IP6T_OPTS_INV_LEN ? "!" : "", in dst_print()
151 optinfo->hdrlen); in dst_print()
153 if (optinfo->flags & IP6T_OPTS_OPTS) in dst_print()
[all …]
/external/mesa3d/src/util/
Dxmlconfig.c343 driOptionInfo *optinfo = &info->info[i]; in driParseOptionInfo() local
346 assert(!optinfo->name); /* No duplicate options in your list. */ in driParseOptionInfo()
348 optinfo->type = opt->info.type; in driParseOptionInfo()
349 optinfo->range = opt->info.range; in driParseOptionInfo()
350 XSTRDUP(optinfo->name, name); in driParseOptionInfo()
375 assert(checkValue(optval, optinfo)); in driParseOptionInfo()
385 checkValue(&v, optinfo)) { in driParseOptionInfo()