Lines Matching refs:found
57 * Once a hostname has been resolved (or found to be non-existent),
179 dns_found_callback found;
345 * IPADDR_NONE if not found.
441 * was found. The function dns_enqueue() can be used to send a query
447 * was not found in the cached dns_table.
467 /* Walk through name list, return entry if found. If not, return NULL. */
471 LWIP_DEBUGF(DNS_DEBUG, ("dns_lookup: \"%s\": found = ", name));
673 if (pEntry->found)
674 (*pEntry->found)(pEntry->name, NULL, pEntry->arg);
677 pEntry->found = NULL;
701 pEntry->found = NULL;
816 if (pEntry->found) {
817 (*pEntry->found)(pEntry->name, &pEntry->ipaddr, pEntry->arg);
838 if (pEntry->found) {
839 (*pEntry->found)(pEntry->name, NULL, pEntry->arg);
843 pEntry->found = NULL;
855 * @param found a callback founction to be called on success, failure or timeout
860 dns_enqueue(const char *name, dns_found_callback found, void *callback_arg)
884 /* if we don't have found an unused entry, use the oldest completed one */
903 pEntry->found = found;
930 * @param found a callback function to be called on success, failure or timeout (only if
936 dns_gethostbyname(const char *hostname, ip_addr_t *addr, dns_found_callback found,
967 return dns_enqueue(hostname, found, callback_arg);