/third_party/boost/boost/asio/detail/ |
D | resolver_service.hpp | 75 results_type resolve(implementation_type&, const query_type& qry, in resolve() argument 80 socket_ops::getaddrinfo(qry.host_name().c_str(), in resolve() 81 qry.service_name().c_str(), qry.hints(), &address_info, ec); in resolve() 85 address_info, qry.host_name(), qry.service_name()); in resolve() 90 void async_resolve(implementation_type& impl, const query_type& qry, in async_resolve() argument 97 p.p = new (p.v) op(impl, qry, scheduler_, handler, io_ex); in async_resolve()
|
D | resolve_query_op.hpp | 59 const query_type& qry, scheduler_impl& sched, in resolve_query_op() argument 63 query_(qry), in resolve_query_op()
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | resolver_service.hpp | 75 results_type resolve(implementation_type&, const query_type& qry, in resolve() argument 80 socket_ops::getaddrinfo(qry.host_name().c_str(), in resolve() 81 qry.service_name().c_str(), qry.hints(), &address_info, ec); in resolve() 85 address_info, qry.host_name(), qry.service_name()); in resolve() 90 void async_resolve(implementation_type& impl, const query_type& qry, in async_resolve() argument 97 p.p = new (p.v) op(impl, qry, scheduler_, handler, io_ex); in async_resolve()
|
D | resolve_query_op.hpp | 59 const query_type& qry, scheduler_impl& sched, in resolve_query_op() argument 63 query_(qry), in resolve_query_op()
|
/third_party/gstreamer/gstreamer/plugins/tracers/ |
D | gststats.c | 268 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/ |
D | dns.c | 761 struct dns_query qry; in dns_send() local 861 qry.type = PP_HTONS(DNS_RRTYPE_AAAA); in dns_send() 863 qry.type = PP_HTONS(DNS_RRTYPE_A); in dns_send() 865 qry.cls = PP_HTONS(DNS_RRCLASS_IN); in dns_send() 866 pbuf_take_at(p, &qry, SIZEOF_DNS_QUERY, query_idx); in dns_send() 1243 struct dns_query qry; in dns_recv() local 1320 if (pbuf_copy_partial(p, &qry, SIZEOF_DNS_QUERY, res_idx) != SIZEOF_DNS_QUERY) { in dns_recv() 1323 if ((qry.cls != PP_HTONS(DNS_RRCLASS_IN)) || in dns_recv() 1324 … (LWIP_DNS_ADDRTYPE_IS_IPV6(entry->reqaddrtype) && (qry.type != PP_HTONS(DNS_RRTYPE_AAAA))) || in dns_recv() 1325 … (!LWIP_DNS_ADDRTYPE_IS_IPV6(entry->reqaddrtype) && (qry.type != PP_HTONS(DNS_RRTYPE_A)))) { in dns_recv()
|