Searched refs:DNSServiceProcessResult (Results 1 - 5 of 5) sorted by relevance

/external/mdnsresponder/mDNSShared/
H A Ddns_sd.h709 * socket, the client should call DNSServiceProcessResult(), which will extract the daemon's
712 * a client can choose to fork a thread and have it loop calling "DNSServiceProcessResult(ref);"
713 * If DNSServiceProcessResult() is called when no data is available for reading on the socket, it
715 * When data arrives on the socket, the client is responsible for calling DNSServiceProcessResult(ref)
728 /* DNSServiceProcessResult()
735 * client is responsible for ensuring that DNSServiceProcessResult() is called whenever there is
746 DNSServiceErrorType DNSSD_API DNSServiceProcessResult(DNSServiceRef sdRef);
2402 * After using DNSServiceSetDispatchQueue on a DNSServiceRef, calling DNSServiceProcessResult
H A Ddnssd_clientshim.c96 DNSServiceErrorType DNSServiceProcessResult(DNSServiceRef sdRef) function
H A Ddnssd_clientstub.c138 int *moreptr; // Set while DNSServiceProcessResult working on this particular DNSServiceRef
877 DNSServiceErrorType DNSSD_API DNSServiceProcessResult(DNSServiceRef sdRef) function
881 if (!sdRef) { syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult called with NULL DNSServiceRef"); return kDNSServiceErr_BadParam; }
885 syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult called with invalid DNSServiceRef %p %08X %08X", sdRef, sdRef->sockfd, sdRef->validator);
891 syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult undefined for kDNSServiceFlagsShareConnection subordinate DNSServiceRef %p", sdRef);
898 if (num_logs < 10) syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult called with DNSServiceRef with no ProcessReply function");
919 // Call the callbacks with an error if using the dispatch API, as DNSServiceProcessResult
938 syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult error: select indicated data was waiting but read_all returned EWOULDBLOCK");
946 syslog(LOG_WARNING, "dnssd_clientstub DNSServiceProcessResult daemon version %d does not match client version %d", cbh.ipc_hdr.version, VERSION);
959 // Call the callbacks with an error if using the dispatch API, as DNSServiceProcessResult
[all...]
/external/mdnsresponder/Clients/
H A Ddns-sd.c877 if (client && FD_ISSET(dns_sd_fd , &readfds)) err = DNSServiceProcessResult(client );
878 else if (client_pa && FD_ISSET(dns_sd_fd2, &readfds)) err = DNSServiceProcessResult(client_pa);
879 if (err) { fprintf(stderr, "DNSServiceProcessResult returned %d\n", err); stopNow = 1; }
/external/mdnsresponder/mDNSPosix/
H A Dnss_mdns.c1026 DNSServiceProcessResult(sdref);
1055 This routine is called from DNSServiceProcessResult where appropriate.

Completed in 245 milliseconds