Lines Matching defs:el
139 dns_element_t *el;
147 el = find_port(portlist->list, portlist->active, port);
148 if (el != NULL) {
150 el->flags |= DNS_PL_INET;
152 el->flags |= DNS_PL_INET6;
161 el = isc_mem_get(portlist->mctx, sizeof(*el) * allocated);
162 if (el == NULL) {
167 memmove(el, portlist->list,
168 portlist->allocated * sizeof(*el));
170 portlist->allocated * sizeof(*el));
172 portlist->list = el;
181 qsort(portlist->list, portlist->active, sizeof(*el), compare);
190 dns_element_t *el;
197 el = find_port(portlist->list, portlist->active, port);
198 if (el != NULL) {
200 el->flags &= ~DNS_PL_INET;
202 el->flags &= ~DNS_PL_INET6;
203 if (el->flags == 0) {
204 *el = portlist->list[portlist->active];
207 sizeof(*el), compare);
216 dns_element_t *el;
223 el = find_port(portlist->list, portlist->active, port);
224 if (el != NULL) {
225 if (af == AF_INET && (el->flags & DNS_PL_INET) != 0)
227 if (af == AF_INET6 && (el->flags & DNS_PL_INET6) != 0)