HomeSort by relevance Sort by last modified time
    Searched refs:qops (Results 1 - 4 of 4) sorted by null

  /external/libnl/lib/route/
qdisc_api.c 38 * @arg qops qdisc module operations
40 int rtnl_qdisc_register(struct rtnl_qdisc_ops *qops)
44 if (!qops->qo_kind[0])
48 if (!strcasecmp(qops->qo_kind, o->qo_kind))
51 qops->qo_next = NULL;
52 *op = qops;
59 * @arg qops qdisc module operations
61 int rtnl_qdisc_unregister(struct rtnl_qdisc_ops *qops)
66 if (!strcasecmp(qops->qo_kind, o->qo_kind))
72 *op = qops->qo_next
79 struct rtnl_qdisc_ops *qops; local
    [all...]
qdisc_obj.c 32 struct rtnl_qdisc_ops *qops; local
36 qops = rtnl_qdisc_lookup_ops(qdisc);
37 if (qops && qops->qo_free_data)
38 qops->qo_free_data(qdisc);
45 struct rtnl_qdisc_ops *qops; local
52 qops = rtnl_qdisc_lookup_ops(src);
53 if (qops && qops->qo_clone)
54 err = qops->qo_clone(dst, src)
62 struct rtnl_qdisc_ops *qops; local
76 struct rtnl_qdisc_ops *qops; local
93 struct rtnl_qdisc_ops *qops; local
    [all...]
qdisc.c 103 struct rtnl_qdisc_ops *qops; local
117 qops = rtnl_qdisc_lookup_ops(qdisc);
118 if (qops && qops->qo_msg_parser) {
119 err = qops->qo_msg_parser(qdisc);
150 struct rtnl_qdisc_ops *qops; local
157 qops = rtnl_qdisc_lookup_ops(qdisc);
158 if (qops && qops->qo_get_opts) {
161 opts = qops->qo_get_opts(qdisc)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPRequest.java 92 Set<String> qops = splitValue(itemMap.remove("qop")); local
93 if (!qops.contains("auth")) {
94 throw new IOException("Unsupported quality of protection value(s): '" + qops + "'");

Completed in 58 milliseconds