Lines Matching refs:aux

879                 LIST_FOREACH(auxiliary_queries, aux, q->auxiliary_queries) {  in append_srv()
883 if (aux->state != DNS_TRANSACTION_SUCCESS) in append_srv()
885 if (aux->auxiliary_result != 0) in append_srv()
888 question = dns_query_question_for_protocol(aux, aux->answer_protocol); in append_srv()
896 DNS_ANSWER_FOREACH(zz, aux->answer) { in append_srv()
937 LIST_FOREACH(auxiliary_queries, aux, q->auxiliary_queries) { in append_srv()
942 if (aux->state != DNS_TRANSACTION_SUCCESS) in append_srv()
944 if (aux->auxiliary_result != 0) in append_srv()
947 question = dns_query_question_for_protocol(aux, aux->answer_protocol); in append_srv()
955 DNS_ANSWER_FOREACH_IFINDEX(zz, ifindex, aux->answer) { in append_srv()
1039 LIST_FOREACH(auxiliary_queries, aux, q->auxiliary_queries) { in resolve_service_all_complete()
1041 switch (aux->state) { in resolve_service_all_complete()
1049 if (aux->auxiliary_result == 0) in resolve_service_all_complete()
1052 bad = aux; in resolve_service_all_complete()
1056 bad = aux; in resolve_service_all_complete()
1187 _cleanup_(dns_query_freep) DnsQuery *aux = NULL; in resolve_service_hostname()
1202 …r = dns_query_new(q->manager, &aux, question, question, NULL, ifindex, q->flags|SD_RESOLVED_NO_SEA… in resolve_service_hostname()
1206 aux->request_family = q->request_family; in resolve_service_hostname()
1207 aux->complete = resolve_service_hostname_complete; in resolve_service_hostname()
1209 r = dns_query_make_auxiliary(aux, q); in resolve_service_hostname()
1221 r = dns_query_go(aux); in resolve_service_hostname()
1225 TAKE_PTR(aux); in resolve_service_hostname()