HomeSort by relevance Sort by last modified time
    Searched full:service (Results 26 - 50 of 11175) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/jmdns/src/javax/jmdns/
ServiceListener.java 10 * Listener for service updates.
16 * A service has been added.<br/>
17 * <b>Note:</b>This event is only the service added event. The service info associated with this event does not include resolution information.<br/>
24 * Please note that service resolution may take a few second to resolve.
28 * The ServiceEvent providing the name and fully qualified type of the service.
33 * A service has been removed.
36 * The ServiceEvent providing the name and fully qualified type of the service.
41 * A service has been resolved. Its details are now available in the ServiceInfo record.<br/>
42 * <b>Note:</b>This call back will never be called if the service does not resolve.<br/>
    [all...]
ServiceInfo.java 16 * The fully qualified service name is build using up to 5 components with the following structure:
25 * <li>&lt;servicedomain&gt;.&lt;parentdomain&gt;: This is the domain scope of the service typically "local.", but this can also be something similar to "in-addr.arpa." or "ip6.arpa."</li>
28 * <li>&lt;Instance&gt;: This is the service name</li>
67 * Construct a service description for registering with JmDNS.
70 * fully qualified service type name, such as <code>_http._tcp.local.</code>.
72 * unqualified service instance name, such as <code>foobar</code>
74 * the local port on which the service runs
76 * string describing the service
77 * @return new service info
84 * Construct a service description for registering with JmDNS
    [all...]
ServiceTypeListener.java 10 * Listener for service types.
16 * A new service type was discovered.
19 * The service event providing the fully qualified type of the service.
24 * A new subtype for the service type was discovered.
31 * The service event providing the fully qualified type of the service with subtype.
ServiceEvent.java 20 * Constructs a Service Event.
39 * Returns the fully qualified type of the service.
41 * @return type of the service.
46 * Returns the instance name of the service. Always returns null, if the event is sent to a service type listener.
48 * @return name of the service
53 * Returns the service info record, or null if the service could not be resolved. Always returns null, if the event is sent to a service type listener.
55 * @return service info recor
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 20 import com.google.common.util.concurrent.Service.State;
60 NullService service = new NullService(); local
61 service.startAndWait();
63 service.stopAndWait();
76 TestService service = new TestService(); local
77 service.runException = new Exception();
78 service.startAndWait();
79 service.runFirstBarrier.await();
80 service.runSecondBarrier.await();
87 assertEquals(service.runException, e.getCause().getCause())
93 TestService service = new TestService(); local
106 TestService service = new TestService(); local
122 TestService service = new TestService(); local
136 TestService service = new TestService(); local
154 TestService service = new TestService(); local
316 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService(); local
329 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService() { local
386 TestFailingCustomScheduledService service = new TestFailingCustomScheduledService(); local
    [all...]
AbstractIdleServiceTest.java 19 import com.google.common.util.concurrent.Service.State;
52 NullService service = new NullService(); local
53 assertFalse(service.startUpCalled);
55 service.start().get();
56 assertTrue(service.startUpCalled);
57 assertEquals(Service.State.RUNNING, service.state());
59 service.stop().get();
60 assertTrue(service.shutDownCalled);
61 assertEquals(Service.State.TERMINATED, service.state())
67 NullService service = new NullService(); local
77 Service service = new NullService() { local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/mdns/
dns_sd_registry_unittest.cc 104 DnsSdService service; local
105 service.service_name = "_myDevice." + service_type;
106 service.ip_address = ip_address1;
112 // Add first service.
113 service_list.push_back(service);
118 service.ip_address = ip_address2;
119 service_list.push_back(service);
123 service.ip_address = ip_address1;
124 registry_->GetDelegate()->ServiceChanged(service_type, true, service);
125 service.ip_address = ip_address2
133 DnsSdService service; local
156 DnsSdService service; local
181 DnsSdService service; local
210 DnsSdService service; local
    [all...]
  /external/chromium_org/chrome/browser/sync/
sync_startup_tracker.cc 13 ProfileSyncService* service = ProfileSyncServiceFactory::GetForProfile( local
15 if (service)
16 service->AddObserver(this);
22 ProfileSyncService* service = ProfileSyncServiceFactory::GetForProfile( local
24 if (service)
25 service->RemoveObserver(this);
55 ProfileSyncService* service =
58 // If no service exists or sync is disabled, treat as a startup error.
59 if (!profile->IsSyncAccessible() || !service ||
60 !service->IsSyncEnabledAndLoggedIn())
    [all...]
sync_ui_util_unittest.cc 50 void VerifySyncGlobalErrorResult(NiceMock<ProfileSyncServiceMock>* service,
55 EXPECT_CALL(*service, HasSyncSetupCompleted())
59 EXPECT_CALL(*service, GetAuthError()).WillRepeatedly(ReturnRef(auth_error));
63 service, signin, &label1, &label2, &label3);
82 NiceMock<ProfileSyncServiceMock> service(profile.get());
85 EXPECT_CALL(service, QueryDetailedSyncStatus(_))
87 EXPECT_CALL(service, IsPassphraseRequired())
89 EXPECT_CALL(service, IsPassphraseRequiredForDecryption())
92 &service, signin, GoogleServiceAuthError::NONE, true, true);
100 NiceMock<ProfileSyncServiceMock> service(profile.get())
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ServiceTest.java 11 import android.app.Service;
27 MyService service = new MyService(); local
28 service.registerReceiver(new AppWidgetProvider(), new IntentFilter());
29 service.onDestroy();
34 MyService service = new MyService(); local
39 service.onDestroy(); // should not throw exception
44 MyService service = new MyService(); local
46 service.unbindService(conn);
51 MyService service = new MyService(); local
52 shadowOf(service).setUnbindServiceShouldThrowIllegalArgument(true)
60 MyService service = new MyService(); local
    [all...]
  /frameworks/base/core/java/android/os/
ServiceManager.java 38 // Find the service manager
44 * Returns a reference to a service with the given name.
46 * @param name the name of the service to get
47 * @return a reference to the service, or <code>null</code> if the service doesn't exist
51 IBinder service = sCache.get(name); local
52 if (service != null) {
53 return service;
64 * Place a new @a service called @a name into the service
101 IBinder service = sCache.get(name); local
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_storage_unittest.cc 28 MockAppCacheService service; local
29 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 111));
32 service.storage()->working_set()->GetCache(111));
34 service.storage()->working_set()->RemoveCache(cache.get());
36 EXPECT_TRUE(!service.storage()->working_set()->GetCache(111));
38 // Removing non-existing cache from service should not fail.
44 MockAppCacheService service; local
46 new AppCacheGroup(service.storage(), GURL(), 111));
48 EXPECT_EQ(group.get(), service.storage()->working_set()->GetGroup(GURL()));
50 service.storage()->working_set()->RemoveGroup(group.get())
60 MockAppCacheService service; local
81 MockAppCacheService service; local
120 MockAppCacheService service; local
    [all...]
  /external/chromium_org/chrome/browser/background/
background_application_list_model_unittest.cc 132 void AddBackgroundPermission(ExtensionService* service,
135 service->profile())) {
143 extensions::PermissionsUpdater(service->profile()).AddPermissions(
147 void RemoveBackgroundPermission(ExtensionService* service,
150 service->profile())) {
153 extensions::PermissionsUpdater(service->profile())
169 ExtensionService* service = extensions::ExtensionSystem::Get(profile_.get())-> local
171 ASSERT_TRUE(service);
172 ASSERT_TRUE(service->is_ready());
173 ASSERT_TRUE(service->extensions())
237 ExtensionService* service = extensions::ExtensionSystem::Get(profile_.get())-> local
311 ExtensionService* service = extensions::ExtensionSystem::Get(profile_.get())-> local
461 ExtensionService* service = extensions::ExtensionSystem::Get(profile_.get())-> local
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_service_state.h 14 // The sync service is up and running, or has not seen any errors yet.
15 // The consumer of this service can make new requests while the
16 // service is in this state.
19 // The sync service is not synchronizing files because the remote service
22 // network condition or service condition changes.
23 // The consumer of this service can still make new requests but
27 // The sync service is not synchronizing files because the remote service
29 // network is offline, the remote service is down or no
    [all...]
  /frameworks/base/core/java/android/content/
ServiceConnection.java 22 * Interface for monitoring the state of an application service. See
23 * {@link android.app.Service} and
30 * Called when a connection to the Service has been established, with
32 * Service.
34 * @param name The concrete component name of the service that has
37 * @param service The IBinder of the Service's communication channel,
40 public void onServiceConnected(ComponentName name, IBinder service);
43 * Called when a connection to the Service has been lost. This typically
44 * happens when the process hosting the service has crashed or been killed
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
ServiceManager.java 24 * Returns a reference to a service with the given name.
26 * @param name the name of the service to get
27 * @return a reference to the service, or <code>null</code> if the service doesn't exist
34 * Place a new @a service called @a name into the service
37 * @param name the name of the new service
38 * @param service the service object
40 public static void addService(String name, IBinder service) {
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 23 * Represents a Bluetooth GATT Service
25 * <p> Gatt Service contains a collection of {@link BluetoothGattCharacteristic},
31 * Primary service
36 * Secondary service (included by primary services)
42 * The remote device his service is associated with.
49 * The UUID of this service.
55 * Instance ID for this service.
67 * Service type (Primary/Secondary).
73 * List of characteristics included in this service.
78 * List of included services for this service
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 34 * Provides Bluetooth A2DP profile, as a service in the Bluetooth application.
87 Log.d(TAG, "getA2dpService(): service is NULL");
89 Log.d(TAG,"getA2dpService(): service is not available");
102 Log.d(TAG, "setA2dpService(): service not available");
104 Log.d(TAG,"setA2dpService(): service is cleaning up");
230 A2dpService service = getService(); local
231 if (service == null) return false;
232 return service.connect(device);
236 A2dpService service = getService(); local
237 if (service == null) return false
242 A2dpService service = getService(); local
248 A2dpService service = getService(); local
254 A2dpService service = getService(); local
260 A2dpService service = getService(); local
266 A2dpService service = getService(); local
272 A2dpService service = getService(); local
278 A2dpService service = getService(); local
284 A2dpService service = getService(); local
290 A2dpService service = getService(); local
    [all...]
  /frameworks/base/core/java/android/service/textservice/
package.html 6 <p>To create a new spell checker, you must implement a service that extends {@link
7 android.service.textservice.SpellCheckerService} and extend the {@link
8 android.service.textservice.SpellCheckerService.Session} class to provide spelling suggestions based
10 android.service.textservice.SpellCheckerService.Session} callback methods, you must return the
13 <p>Applications with a spell checker service must declare the {@link
14 android.Manifest.permission#BIND_TEXT_SERVICE} permission as required by the service. The service
16 android:name="android.service.textservice.SpellCheckerService" />} as the intent?s action and should
21 &lt;service
26 &lt;action android:name="android.service.textservice.SpellCheckerService" /
    [all...]
  /device/asus/flo/
sec_config 2 /* <GPS QMI Service ID - 16>:<GPS QMI Instance ID - all instances>:<Client Group ID> */
  /device/lge/mako/sepolicy/
drmserver.te 1 # Grant DRM Service access to Qualcomm Secure Execution Environment Communicator (QSEECOM) device
  /external/chromium_org/chrome/app/resources/terms/
terms_chromium.html 7 <p>In official builds this space will show the terms of service.</p>
  /external/chromium_org/chrome/browser/extensions/
external_install_ui.h 18 void AddExternalInstallError(ExtensionService* service,
21 void RemoveExternalInstallError(ExtensionService* service);
24 bool HasExternalInstallError(ExtensionService* service);
25 bool HasExternalInstallBubble(ExtensionService* service);
  /external/chromium_org/third_party/icu/source/common/
localsvc.h 15 * Prototype for user-supplied service hook. This function is expected to return
16 * a type of factory object specific to the requested service.
18 * @param what service-specific string identifying the specific user hook
20 * @return a service-specific hook, or NULL on failure.
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 27 * lifecycle of a service is:
36 * If the service fails while starting, running or stopping, its state will be
37 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
46 * {@code com.google.common.base.Service})
49 public interface Service {
51 * If the service state is {@link State#NEW}, this initiates service startup
52 * and returns immediately. If the service has already been started, this
53 * method returns immediately without taking action. A stopped service may not
58 * until the service has finished starting, and returns one of {@lin
    [all...]

Completed in 1320 milliseconds

12 3 4 5 6 7 8 91011>>