/third_party/node/deps/cares/src/lib/ |
D | ares_send.c | 29 void ares_send(ares_channel channel, const unsigned char *qbuf, int qlen, in ares_send() argument 37 if (qlen < HFIXEDSZ || qlen >= (1 << 16)) in ares_send() 50 query->tcpbuf = ares_malloc(qlen + 2); in ares_send() 81 query->tcpbuf[0] = (unsigned char)((qlen >> 8) & 0xff); in ares_send() 82 query->tcpbuf[1] = (unsigned char)(qlen & 0xff); in ares_send() 83 memcpy(query->tcpbuf + 2, qbuf, qlen); in ares_send() 84 query->tcplen = qlen + 2; in ares_send() 88 query->qlen = qlen; in ares_send() 108 query->using_tcp = (channel->flags & ARES_FLAG_USEVC) || qlen > packetsz; in ares_send()
|
D | ares_query.c | 110 int qlen, rd, status; in ares_query() local 115 &qlen, (channel->flags & ARES_FLAG_EDNS) ? channel->ednspsz : 0); in ares_query() 137 ares_send(channel, qbuf, qlen, qcallback, qquery); in ares_query()
|
D | ares_process.c | 81 static int same_questions(const unsigned char *qbuf, int qlen, 596 if ((q->qid == id) && same_questions(q->qbuf, q->qlen, abuf, alen)) in process_answer() 614 int qlen = (query->tcplen - 2) - EDNSFIXEDSZ; in process_answer() local 617 query->qlen -= EDNSFIXEDSZ; in process_answer() 618 query->tcpbuf[0] = (unsigned char)((qlen >> 8) & 0xff); in process_answer() 619 query->tcpbuf[1] = (unsigned char)(qlen & 0xff); in process_answer() 861 if (socket_write(channel, server->udp_socket, query->qbuf, query->qlen) == -1) in ares__send_query() 1244 static int same_questions(const unsigned char *qbuf, int qlen, in same_questions() argument 1257 if (qlen < HFIXEDSZ || alen < HFIXEDSZ) in same_questions() 1271 if (ares_expand_name(q.p, qbuf, qlen, &q.name, &q.namelen) in same_questions() [all …]
|
D | ares_private.h | 226 int qlen; member
|
/third_party/alsa-lib/src/seq/ |
D | seq_midi_event.c | 38 ssize_t qlen; /* queue length */ member 83 int qlen; member 211 dev->qlen = 0; in reset_encode() 421 dev->qlen = status_event[dev->type].qlen; in snd_midi_event_encode_byte() 423 if (dev->qlen > 0) { in snd_midi_event_encode_byte() 427 dev->qlen--; in snd_midi_event_encode_byte() 431 dev->qlen = status_event[dev->type].qlen - 1; in snd_midi_event_encode_byte() 435 if (dev->qlen == 0) { in snd_midi_event_encode_byte() 560 long qlen; in snd_midi_event_decode() local 586 qlen = ev->data.ext.len; in snd_midi_event_decode() [all …]
|
/third_party/curl/lib/ |
D | dotdot.c | 171 size_t qlen; in Curl_dedotdotify() local 176 qlen = strlen(&input[oindex]); in Curl_dedotdotify() 177 memcpy(outptr, &input[oindex], qlen + 1); /* include the end zero byte */ in Curl_dedotdotify()
|
/third_party/ltp/testcases/network/tcp_cc/ |
D | tcp_cc_lib.sh | 63 local qlen="${2:-1000}" 66 tst_res TINFO "set qdisc on $(tst_iface rhost) to $qdisc len $qlen" 71 tst_rhost_run -s -c "ip link set txqueuelen $qlen dev $rmt_dev"
|
/third_party/toybox/toys/pending/ |
D | host.c | 71 i, j, ret, sec, count, rcode, qlen, alen, pllen = 0, in host_main() local 119 qlen = res_mkquery(0, name, 1, type, 0, 0, 0, qbuf, sizeof(qbuf)); in host_main() 120 if (qlen < 0) error_exit("Invalid query parameters: %s", name); in host_main() 132 send(s, qbuf, qlen, 0); in host_main() 134 } else alen = res_send(qbuf, qlen, abuf, abuf_len); in host_main()
|
/third_party/libnl/src/lib/ |
D | link.c | 97 uint32_t qlen = nl_cli_parse_u32(arg); in nl_cli_link_parse_txqlen() local 98 rtnl_link_set_txqlen(link, qlen); in nl_cli_link_parse_txqlen()
|
/third_party/python/Lib/email/ |
D | _encoded_words.py | 226 qlen = _cte_encode_length['q'](bstring) 229 encoding = 'q' if qlen - blen < 5 else 'b'
|
/third_party/libnl/include/linux-private/linux/ |
D | gen_stats.h | 62 __u32 qlen; member
|
D | pkt_sched.h | 41 __u32 qlen; member
|
/third_party/musl/src/network/ |
D | getnameinfo.c | 159 int qlen = __res_mkquery(0, ptr, 1, RR_PTR, in getnameinfo() local 161 int rlen = __res_send(query, qlen, reply, sizeof reply); in getnameinfo()
|
/third_party/musl/porting/liteos_a/user/src/network/ |
D | getnameinfo.c | 159 int qlen = __res_mkquery(0, ptr, 1, RR_PTR, in getnameinfo() local 161 int rlen = __res_send(query, qlen, reply, sizeof reply); in getnameinfo()
|
/third_party/lwip/src/core/ipv4/ |
D | etharp.c | 1040 unsigned int qlen = 0; local 1047 qlen++; 1050 qlen++; 1058 if (qlen >= ARP_QUEUE_LEN) {
|
/third_party/lwip/src/core/ |
D | pbuf.c | 242 u16_t qlen; in pbuf_alloc() local 253 qlen = LWIP_MIN(rem_len, (u16_t)(PBUF_POOL_BUFSIZE_ALIGNED - LWIP_MEM_ALIGN_SIZE(offset))); in pbuf_alloc() 255 rem_len, qlen, type, 0); in pbuf_alloc() 268 rem_len = (u16_t)(rem_len - qlen); in pbuf_alloc()
|
/third_party/ltp/doc/ |
D | namespaces-helper-tools.txt | 53 6: veth1: <BROADCAST> mtu 1500 qdisc noop state DOWN qlen 1000
|
/third_party/libnl/lib/route/ |
D | tc.c | 134 tc->tc_stats[RTNL_TC_QLEN] = q->qlen; in rtnl_tc_msg_parse() 158 tc->tc_stats[RTNL_TC_QLEN] = st->qlen; in rtnl_tc_msg_parse() 618 __ADD(RTNL_TC_QLEN, qlen),
|
/third_party/curl/lib/vauth/ |
D | digest.c | 273 char *qop, size_t qlen) in auth_decode_digest_md5_message() argument 296 if(!auth_digest_get_key_value(chlg, "qop=\"", qop, qlen, '\"')) in auth_decode_digest_md5_message()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_query.c | 480 int qlen; in define_query_vgpu10() local 502 qlen = align(resultLen + sizeof(SVGA3dQueryState), 8); in define_query_vgpu10() 505 sq->offset = allocate_query(svga, sq->svga_type, qlen); in define_query_vgpu10()
|
/third_party/curl/lib/vtls/ |
D | bearssl.c | 181 ta_size += pkey->key.ec.qlen; in load_cafile() 205 memcpy(ta->pkey.key.ec.q, pkey->key.ec.q, pkey->key.ec.qlen); in load_cafile()
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_uio.h | 1188 uint16_t qlen; member 1198 uint32_t qlen; member
|
D | sctp_sysctl.c | 528 xinpcb.qlen = 0; 532 xinpcb.qlen = so->sol_qlen; 539 xinpcb.qlen = so->so_qlen;
|
/third_party/node/deps/cares/include/ |
D | ares.h | 416 int qlen,
|
/third_party/libnl/python/netlink/route/ |
D | tc.py | 223 def qlen(self): member in Tc
|