Lines Matching defs:el
130 dns_element_t *el;
138 el = find_port(portlist->list, portlist->active, port);
139 if (el != NULL) {
141 el->flags |= DNS_PL_INET;
143 el->flags |= DNS_PL_INET6;
152 el = isc_mem_get(portlist->mctx, sizeof(*el) * allocated);
153 if (el == NULL) {
158 memmove(el, portlist->list,
159 portlist->allocated * sizeof(*el));
161 portlist->allocated * sizeof(*el));
163 portlist->list = el;
172 qsort(portlist->list, portlist->active, sizeof(*el), compare);
181 dns_element_t *el;
188 el = find_port(portlist->list, portlist->active, port);
189 if (el != NULL) {
191 el->flags &= ~DNS_PL_INET;
193 el->flags &= ~DNS_PL_INET6;
194 if (el->flags == 0) {
195 *el = portlist->list[portlist->active];
198 sizeof(*el), compare);
207 dns_element_t *el;
214 el = find_port(portlist->list, portlist->active, port);
215 if (el != NULL) {
216 if (af == AF_INET && (el->flags & DNS_PL_INET) != 0)
218 if (af == AF_INET6 && (el->flags & DNS_PL_INET6) != 0)