Lines Matching refs:DNSSDService

40         public void serviceFound(DNSSDService browser, int flags, int ifIndex,
90 Note: browsing consumes network bandwidth. Call {@link DNSSDService#stop} when you have finished browsing.<P>
113 @return A {@link DNSSDService} that represents the active browse operation.
118 public static DNSSDService browse( int flags, int ifIndex, String regType, String domain, BrowseListener listener)
131 @return A {@link DNSSDService} that represents the active browse operation.
136 public static DNSSDService browse( String regType, BrowseListener listener)
146 calling {@link DNSSDService#stop}.<P>
175 @return A {@link DNSSDService} that represents the active resolve operation.
180 public static DNSSDService resolve( int flags, int ifIndex, String serviceName, String regType,
309 @return A {@link DNSSDService} that controls the active query.
314 public static DNSSDService queryRecord( int flags, int ifIndex, String serviceName, int rrtype,
323 The enumeration MUST be cancelled by calling {@link DNSSDService#stop} when no more domains
337 @return A {@link DNSSDService} that controls the active enumeration.
342 public static DNSSDService enumerateDomains( int flags, int ifIndex, DomainListener listener)
437 abstract protected DNSSDService _makeBrowser( int flags, int ifIndex, String regType, String domain, BrowseListener listener)
440 abstract protected DNSSDService _resolve( int flags, int ifIndex, String serviceName, String regType,
451 abstract protected DNSSDService _queryRecord( int flags, int ifIndex, String serviceName, int rrtype,
455 abstract protected DNSSDService _enumerateDomains( int flags, int ifIndex, DomainListener listener)
554 protected DNSSDService _makeBrowser( int flags, int ifIndex, String regType, String domain, BrowseListener client)
560 protected DNSSDService _resolve( int flags, int ifIndex, String serviceName, String regType,
581 protected DNSSDService _queryRecord( int flags, int ifIndex, String serviceName, int rrtype,
588 protected DNSSDService _enumerateDomains( int flags, int ifIndex, DomainListener listener)
635 class AppleService implements DNSSDService, Runnable