Home | History | Annotate | Download | only in ServiceRegistration

Lines Matching defs:sdref

267 address_query_callback(DNSServiceRef UNUSED sdRef, DNSServiceFlags flags, uint32_t interfaceIndex,
411 DNSServiceRef sdref;
420 int ret = DNSServiceQueryRecord(&sdref, kDNSServiceFlagsForceMulticast | kDNSServiceFlagsLongLivedQuery,
430 *txn = ioloop_dnssd_txn_add(sdref, address, address_query_context_release, address_query_txn_fail);
434 DNSServiceRefDeallocate(sdref));
3553 srpl_service_txt_callback(DNSServiceRef UNUSED sdRef, DNSServiceFlags UNUSED flags, uint32_t UNUSED interfaceIndex,
3588 srpl_service_srv_callback(DNSServiceRef UNUSED sdRef, DNSServiceFlags flags, uint32_t UNUSED interfaceIndex,
3634 DNSServiceRef sdref;
3636 int err = DNSServiceQueryRecord(&sdref, kDNSServiceFlagsLongLivedQuery, kDNSServiceInterfaceIndexAny,
3643 *txn = ioloop_dnssd_txn_add(sdref, service, srpl_instance_service_context_release, NULL);
3647 DNSServiceRefDeallocate(sdref);
3663 srpl_browse_callback(DNSServiceRef UNUSED sdRef, DNSServiceFlags flags, uint32_t interfaceIndex,
3839 DNSServiceRef sdref;
3843 ret = DNSServiceBrowse(&sdref, kDNSServiceFlagsLongLivedQuery,
3849 domain->query = ioloop_dnssd_txn_add(sdref, domain, srpl_domain_context_release, srpl_dnssd_txn_fail);
3852 DNSServiceRefDeallocate(sdref);
6095 srpl_register_completion(DNSServiceRef UNUSED sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType error_code,
6118 DNSServiceRef sdref = NULL;
6174 err = DNSServiceRegister(&sdref, kDNSServiceFlagsUnique,
6182 domain->srpl_advertise_txn = ioloop_dnssd_txn_add(sdref, NULL, NULL, NULL);
6187 sdref = NULL; // srpl_advertise_txn holds the reference.
6191 if (sdref != NULL) {
6192 DNSServiceRefDeallocate(sdref);