Home
last modified time | relevance | path

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

/external/grpc-grpc/test/core/end2end/
Dgenerate_tests.bzl210 def compatible(fopt, topt): argument
212 if not fopt.fullstack:
215 if not fopt.dns_resolver:
218 if not fopt.name_resolution:
221 if fopt.includes_proxy:
224 if fopt.tracing:
227 if fopt.is_inproc:
230 if not fopt.is_http2:
233 if not fopt.supports_proxy_auth:
236 if not fopt.supports_write_buffering:
[all …]
/external/iproute2/tc/
Dq_cbq.c186 struct tc_cbq_fopt fopt = {}; in cbq_parse_class_opt() local
313 if (get_tc_classid(&fopt.split, *argv)) { in cbq_parse_class_opt()
322 err = sscanf(*argv, "%08x/%08x", &fopt.defmap, &fopt.defchange); in cbq_parse_class_opt()
328 fopt.defchange = ~0; in cbq_parse_class_opt()
417 addattr_l(n, 1024, TCA_CBQ_FOPT, &fopt, sizeof(fopt)); in cbq_parse_class_opt()
440 struct tc_cbq_fopt *fopt = NULL; in cbq_print_opt() local
471 if (RTA_PAYLOAD(tb[TCA_CBQ_FOPT]) < sizeof(*fopt)) in cbq_print_opt()
474 fopt = RTA_DATA(tb[TCA_CBQ_FOPT]); in cbq_print_opt()
551 if (fopt && show_details) { in cbq_print_opt()
554 print_tc_classid(buf, sizeof(buf), fopt->split); in cbq_print_opt()
[all …]
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/
Dcompare.go143 if fopt, ok := opt.(filtered); ok && !fopt.isFiltered() {