Searched refs:ServiceListener (Results 1 - 25 of 38) sorted by relevance

12

/external/jmdns/src/javax/jmdns/
H A DServiceListener.java14 public interface ServiceListener extends EventListener { interface in inherits:EventListener
H A DJmDNS.java212 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
229 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
235 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
247 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
256 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
261 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
273 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
280 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
312 public abstract void addServiceListener(String type, ServiceListener listener);
322 public abstract void removeServiceListener(String type, ServiceListener listene
[all...]
H A DJmmDNS.java187 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
205 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
212 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
223 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
230 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
236 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
249 * Request service information. The information about the service is requested and the ServiceListener.resolveService method is called as soon as it is available.
256 * if <code>true</code> ServiceListener.resolveService will be called whenever new new information is received.
289 * @see javax.jmdns.JmDNS#addServiceListener(java.lang.String, javax.jmdns.ServiceListener)
291 public abstract void addServiceListener(String type, ServiceListener listene
[all...]
/external/icu/icu4c/source/common/
H A Dserv.h42 class ServiceListener;
363 * <p>ServiceListener is the listener that ICUService provides by default.
369 class U_COMMON_API ServiceListener : public EventListener {
371 virtual ~ServiceListener();
506 * subinterface, ServiceListener, which can be registered with the
507 * service. When the service changes, the ServiceListener's
925 * a ServiceListener. Subclasses can override this to accept
936 * <p>The default implementation assumes a ServiceListener.
H A Dserv.cpp193 ServiceListener::~ServiceListener() {}
195 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ServiceListener)
951 return dynamic_cast<const ServiceListener*>(&l) != NULL;
957 ((ServiceListener&)l).serviceChanged(*this);
H A Dservloc.h45 class ServiceListener;
/external/jmdns/src/javax/jmdns/impl/
H A DListenerStatus.java14 import javax.jmdns.ServiceListener;
26 public static class ServiceListenerStatus extends ListenerStatus<ServiceListener> {
37 public ServiceListenerStatus(ServiceListener listener, boolean synch) {
H A DJmmDNSImpl.java32 import javax.jmdns.ServiceListener;
293 * @see javax.jmdns.JmmDNS#addServiceListener(java.lang.String, javax.jmdns.ServiceListener)
296 public void addServiceListener(String type, ServiceListener listener) {
304 * @see javax.jmdns.JmmDNS#removeServiceListener(java.lang.String, javax.jmdns.ServiceListener)
307 public void removeServiceListener(String type, ServiceListener listener) {
H A DJmDNSImpl.java39 import javax.jmdns.ServiceListener;
78 * Holds instances of ServiceListener's. Keys are Strings holding a fully qualified service type. Values are LinkedList's of ServiceListener's.
918 public void addServiceListener(String type, ServiceListener listener) {
922 private void addServiceListener(String type, ServiceListener listener, boolean synch) {
967 public void removeServiceListener(String type, ServiceListener listener) {
2001 private static class ServiceCollector implements ServiceListener {
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothA2dpFacade.java53 class A2dpServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothA2dpSinkFacade.java53 class A2dpSinkServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothAvrcpFacade.java55 class AvrcpServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothHfpClientFacade.java54 class HfpClientServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothHspFacade.java54 class HspServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothMapFacade.java55 class MapServiceListener implements BluetoothProfile.ServiceListener {
H A DBluetoothHidFacade.java53 class HidServiceListener implements BluetoothProfile.ServiceListener {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DICUServiceTest.java35 import android.icu.impl.ICUService.ServiceListener;
483 ServiceListener l1 = new ServiceListener() {
490 ServiceListener l2 = new ServiceListener() {
522 ServiceListener l3 = new ServiceListener() {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUServiceTest.java34 import com.ibm.icu.impl.ICUService.ServiceListener;
479 ServiceListener l1 = new ServiceListener() {
486 ServiceListener l2 = new ServiceListener() {
518 ServiceListener l3 = new ServiceListener() {
/external/guava/guava/src/com/google/common/util/concurrent/
H A DServiceManager.java175 * An encapsulation of all of the state that is accessed by the {@linkplain ServiceListener
176 * service listeners}. This is extracted into its own object so that {@link ServiceListener}
207 service.addListener(new ServiceListener(service, stateReference), directExecutor());
398 * accessed by instances of {@link ServiceListener}.
723 private static final class ServiceListener extends Service.Listener { class in class:ServiceManager
729 ServiceListener(Service service, WeakReference<ServiceManagerState> state) { method in class:ServiceManager.ServiceListener
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUService.java78 * ServiceListener, which can be registered with the service. When
79 * the service changes, the ServiceListener's serviceChanged method
936 * ServiceListener is the listener that ICUService provides by default.
942 public static interface ServiceListener extends EventListener { interface in class:ICUService
948 * requires a ServiceListener. Subclasses can override to accept
952 return l instanceof ServiceListener;
956 * Notify the listener, which by default is a ServiceListener.
960 ((ServiceListener)l).serviceChanged(this);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUService.java77 * ServiceListener, which can be registered with the service. When
78 * the service changes, the ServiceListener's serviceChanged method
934 * ServiceListener is the listener that ICUService provides by default.
940 public static interface ServiceListener extends EventListener { interface in class:ICUService
946 * requires a ServiceListener. Subclasses can override to accept
950 return l instanceof ServiceListener;
954 * Notify the listener, which by default is a ServiceListener.
958 ((ServiceListener)l).serviceChanged(this);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/icu4c/source/test/intltest/
H A Dicusvtst.cpp951 class SimpleListener : public ServiceListener {
1010 ServiceListener l3 = new ServiceListener() {
/external/guice/lib/build/
H A Dfelix-2.0.5.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF/NOTICE META- ...

Completed in 939 milliseconds

12