HomeSort by: relevance | last modified time | path
    Searched refs:qtype (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/usr.sbin/altq/altqstat/
qdisc_conf.c 78 int fd, qtype = 0; local in function:ifname2qdisc
102 qtype = qtypereq.arg;
104 if (st->altqtype == qtype)
108 return (qtype);
altqstat.c 95 int qtype, interval; local in function:main
164 qtype = ifname2qdisc(interface, qname);
165 if (qtype == 0)
qdisc_priq.c 106 if (sp->qtype == Q_RED)
108 else if (sp->qtype == Q_RIO)
qdisc_cbq.c 129 if (sp->qtype == Q_RED)
131 else if (sp->qtype == Q_RIO)
qdisc_hfsc.c 148 if (sp->qtype == Q_RED)
150 else if (sp->qtype == Q_RIO)
  /src/tests/lib/libc/net/
h_dns_server.c 71 int qtype; member in struct:dns_data
246 int qtype, qclass; local in function:main
258 qtype = *p++ << 8;
259 qtype |= *p++;
260 if (qtype != dp->qtype) {
262 qtype, dp->qtype);
265 DPRINTF("match type 0x%x\n", qtype);
283 *p++ = dp->qtype >> 8
    [all...]
  /src/sys/altq/
altq_priq.h 107 int qtype; member in struct:priq_classstats
altq_cbq.h 95 int qtype; member in struct:_cbq_class_stats_
altq_classq.h 70 #define qtype(q) (q)->qtype_ /* Get queue type */ macro
altq_priq.c 332 qtype(cl->cl_q) = Q_DROPTAIL;
362 qtype(cl->cl_q) = Q_RIO;
371 qtype(cl->cl_q) = Q_RED;
591 sp->qtype = qtype(cl->cl_q);
altq_hfsc.h 106 int qtype; member in struct:hfsc_classstats
altq_hfsc.c 418 qtype(cl->cl_q) = Q_DROPTAIL;
452 qtype(cl->cl_q) = Q_RED;
459 qtype(cl->cl_q) = Q_RIO;
1676 sp->qtype = qtype(cl->cl_q);
altq_rmclass.c 252 qtype(cl->q_) = Q_DROPHEAD;
298 qtype(cl->q_) = Q_RED;
305 qtype(cl->q_) = Q_RIO;
altq_cbq.c 234 statsp->qtype = qtype(cl->q_);
1111 printf("tail=%p, head=%p, qlen=%d, qlim=%d, qthresh=%d,qtype=%d\n",
altq_rio.c 564 qtype(rqp->rq_q) = Q_RIO;
altq_red.c 830 qtype(rqp->rq_q) = Q_RED;
  /src/lib/libc/net/
getaddrinfo.c 224 int qclass, qtype; /* class and type of query */ member in struct:res_target
1703 int qtype, const struct addrinfo *pai)
1732 switch (qtype) {
1763 if (qtype == T_A || qtype == T_AAAA || qtype == T_ANY) {
1799 if ((qtype == T_A || qtype == T_AAAA || qtype == T_ANY) &&
1818 if (qtype == T_ANY)
    [all...]
gethnamaddr.c 214 getanswer(const querybuf *answer, int anslen, const char *qname, int qtype,
239 switch (qtype) {
271 if (qtype == T_A || qtype == T_AAAA) {
311 if ((qtype == T_A || qtype == T_AAAA) && type == T_CNAME) {
340 if (qtype == T_PTR && type == T_CNAME) {
361 if (type != qtype) {
365 qname, p_class(C_IN), p_type(qtype),
477 if (res->nsort && haveanswer > 1 && qtype == T_A
    [all...]
  /src/dist/pf/sbin/pfctl/
pfctl_parser.h 153 int qtype; member in struct:node_queue_opt
parse.y 1300 if ($3.scheduler.qtype == ALTQT_NONE) {
1304 a.scheduler = $3.scheduler.qtype;
1345 a.scheduler = $4.scheduler.qtype;
1358 queue_opts.scheduler.qtype = ALTQT_NONE;
1367 queue_opts.scheduler.qtype = ALTQT_NONE;
1468 $$.qtype = ALTQT_CBQ;
1472 $$.qtype = ALTQT_CBQ;
1476 $$.qtype = ALTQT_PRIQ;
1480 $$.qtype = ALTQT_PRIQ;
1484 $$.qtype = ALTQT_HFSC
    [all...]
pfctl_altq.c 1197 opts->qtype);
  /src/lib/libresolv/
res_findzonecut.c 671 do_query(res_state statp, const char *dname, ns_class class, ns_type qtype,
677 n = res_nmkquery(statp, ns_o_query, dname, class, qtype,
  /src/sys/netinet6/
icmp6.c 1225 u_int16_t qtype; local in function:ni6_input
1272 qtype = ntohs(ni6->ni_qtype);
1274 switch (qtype) {
1293 if (qtype == NI_QTYPE_FQDN && ni6->ni_code == 0 &&
1381 switch (qtype) {
1394 switch (qtype) {
1412 /* unsupported - should respond with unknown Qtype? */
1417 * `unknown Qtype' in this case. However we regard the case
1424 qtype = NI_QTYPE_FQDN;
1457 /* qtype dependent procedure *
    [all...]
  /src/include/arpa/
nameser.h 363 /* Exclusively a QTYPE? (not also an RTYPE) */
366 /* Some kind of meta-RR? (not a QTYPE, but also not an RTYPE) */
368 /* Exclusively an RTYPE? (not also a QTYPE or a meta-RR) */
664 ns_type qtype, ns_class qclass);
  /src/sys/dev/ic/
ath.c 169 static struct ath_txq *ath_txq_setup(struct ath_softc*, int qtype, int subtype);
3333 ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
3358 qnum = ath_hal_setuptxqueue(ah, qtype, &qi);

Completed in 32 milliseconds

1 2