Home
last modified time | relevance | path

Searched refs:qry (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstreamer/plugins/tracers/
Dgststats.c268 GstPadStats * that_pad_stats, GstQuery * qry, GstClockTime elapsed, in do_query_stats() argument
278 that_pad_stats->index, that_elem_stats->index, GST_QUERY_TYPE_NAME (qry), in do_query_stats()
279 gst_query_get_structure (qry), have_res, res); in do_query_stats()
487 GstQuery * qry) in do_element_query_pre() argument
494 GST_QUERY_TYPE_NAME (qry)); in do_element_query_pre()
499 GstQuery * qry) in do_query_pre() argument
506 qry, ts, FALSE, FALSE); in do_query_pre()
511 GstQuery * qry, gboolean res) in do_query_post() argument
518 qry, ts, TRUE, res); in do_query_post()
/third_party/lwip/src/core/
Ddns.c786 struct dns_query qry; in dns_send() local
886 qry.type = PP_HTONS(DNS_RRTYPE_AAAA); in dns_send()
888 qry.type = PP_HTONS(DNS_RRTYPE_A); in dns_send()
890 qry.cls = PP_HTONS(DNS_RRCLASS_IN); in dns_send()
891 pbuf_take_at(p, &qry, SIZEOF_DNS_QUERY, query_idx); in dns_send()
1270 struct dns_query qry; in dns_recv() local
1347 if (pbuf_copy_partial(p, &qry, SIZEOF_DNS_QUERY, res_idx) != SIZEOF_DNS_QUERY) { in dns_recv()
1350 if ((qry.cls != PP_HTONS(DNS_RRCLASS_IN)) || in dns_recv()
1351 … (LWIP_DNS_ADDRTYPE_IS_IPV6(entry->reqaddrtype) && (qry.type != PP_HTONS(DNS_RRTYPE_AAAA))) || in dns_recv()
1352 … (!LWIP_DNS_ADDRTYPE_IS_IPV6(entry->reqaddrtype) && (qry.type != PP_HTONS(DNS_RRTYPE_A)))) { in dns_recv()