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

<<21222324252627282930>>

  /external/qemu/android/protocol/
core-commands-proxy.h 19 * Contains the UI-side implementation of the "ui-core-control" service that is
24 * service. Note that there can be only one instance of this service in the UI.
user-events-proxy.h 14 * Contains the UI-side of the "user events" service. Here we send user events
22 * service. Note that there can be only one instance of this service in the UI.
  /frameworks/av/drm/libdrmframework/include/
IDrmServiceListener.h 29 * This is the interface class for DRM service listener.
47 * This is the Binder implementation class for DRM service listener.
59 * This is the Binder implementation class for DRM service listener.
  /frameworks/base/core/tests/coretests/src/android/os/
BinderThreadPriorityService.java 19 import android.app.Service;
25 * Service used by {@link BinderThreadPriorityTest} to verify
28 public class BinderThreadPriorityService extends Service {
  /frameworks/base/obex/javax/obex/
SessionNotifier.java 65 * The following checks are done to verify that the service record provided
69 * <LI>ServiceClassIDList and ProtocolDescriptorList, the mandatory service
70 * attributes for a <code>btgoep</code> service record, must be present in
78 * with this notifier is a completely valid service record. It is the
79 * responsibility of the application to ensure that the service record
80 * follows all of the applicable syntactic and semantic rules for service
102 * The following checks are done to verify that the service record provided
106 * <LI>ServiceClassIDList and ProtocolDescriptorList, the mandatory service
107 * attributes for a <code>btgoep</code> service record, must be present in
115 * with this notifier is a completely valid service record. It is th
    [all...]
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ServiceUserTarget.java 19 import android.app.Service;
26 public class ServiceUserTarget extends Service {
33 "Service created as user " + UserHandle.myUserId(),
SingleUserService.java 19 import android.app.Service;
26 public class SingleUserService extends Service {
33 "Service created as user " + UserHandle.myUserId(),
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceInfo.java 29 * A class for storing Bonjour service information that is advertised
81 * Create a Bonjour service information object.
85 * @param serviceType service type.<br>
89 * @return Bonjour service information object
95 "instance name or service type cannot be empty");
113 * Create wpa_supplicant service query for PTR record.
117 * @param serviceType service type.<br>
119 * @return wpa_supplicant service query.
139 * Create wpa_supplicant service query for TXT record.
143 * @param serviceType service type.<br
    [all...]
  /frameworks/ml/bordeaux/service/
AndroidManifest.xml 12 <service android:name=".services.BordeauxService"
17 <!-- This is an action code you can use to select the service
21 </service>
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
IBordeauxService.aidl 22 * Main learning interface of bordeaux service
41 * Often you want to allow a service to call back to its clients.
43 * the service.
  /frameworks/native/cmds/bugreport/
bugreport.c 28 /* start the dumpstate service */
31 /* socket will not be available until service starts */
43 fprintf(stderr, "Failed to connect to dumpstate service\n");
  /frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
InstrumentationUiAutomatorBridge.java 19 import android.app.Service;
41 mContext.getSystemService(Service.WINDOW_SERVICE);
53 mContext.getSystemService(Service.POWER_SERVICE);
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 58 /** Callback indicating that an included service has been added to a service */
62 /** Callback invoked when a characteristic has been added to a service */
78 /** Callback triggered when a service has been deleted */
138 /** Create a new service */
141 /** Assign an included service to it's parent service */
144 /** Add a characteristic to a service */
149 /** Add a descriptor to a given service */
153 /** Starts a local service */
    [all...]
  /libcore/luni/src/main/java/java/util/spi/
LocaleServiceProvider.java 23 * The base class for all the locale related service provider interfaces (SPIs).
24 * <p>Note that Android does not support user-supplied locale service providers.
37 * Returns all locales for which this locale service provider has localized objects or names.
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
SecurityAccess.java 41 * Access to Service.getAliases()
45 public List<String> getAliases(Provider.Service s);
53 public Provider.Service getService(Provider p, String type);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
EmptyService.java 19 import android.app.Service;
24 * Background {@link Service} that is used to keep our process alive long enough
28 public class EmptyService extends Service {
  /packages/apps/Exchange/
AndroidManifest.xml 82 <service
83 android:name="com.android.exchange.service.EasService"
91 </service>
94 <service
95 android:name="com.android.exchange.service.EmailSyncAdapterService"
105 </service>
108 <service
109 android:name="com.android.exchange.service.ContactsSyncAdapterService"
117 </service>
120 <service
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/service/
AbstractSyncAdapterService.java 17 package com.android.exchange.service;
19 import android.app.Service;
31 public abstract class AbstractSyncAdapterService extends Service {
  /packages/apps/Exchange/tests/src/com/android/exchange/service/
PingSyncSynchronizerTest.java 17 package com.android.exchange.service;
19 import android.app.Service;
29 private static class StubService extends Service {
  /packages/apps/Music/src/com/android/music/
MediaAppWidgetProvider.java 64 * and hide actions if service not running.
100 void notifyChange(MediaPlaybackService service, String what) {
101 if (hasInstances(service)) {
104 performUpdate(service, null);
112 void performUpdate(MediaPlaybackService service, int[] appWidgetIds) {
113 final Resources res = service.getResources();
114 final RemoteViews views = new RemoteViews(service.getPackageName(), R.layout.album_appwidget);
116 CharSequence titleName = service.getTrackName();
117 CharSequence artistName = service.getArtistName();
152 final boolean playing = service.isPlaying()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
EmptyService.java 18 import android.app.Service;
26 * A Service that does nothing. It is used to bump the adjustment of the BulkOperationHelper thread
29 public class EmptyService extends Service
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
EmptyService.java 18 import android.app.Service;
23 * Background {@link Service} that is used to keep our process alive long enough
27 public class EmptyService extends Service {
  /packages/screensavers/WebView/
AndroidManifest.xml 8 <service
13 <action android:name="android.service.dreams.DreamService" />
16 </service>
  /packages/services/Telephony/src/com/android/phone/
INetworkQueryService.aidl 22 * Service interface to handle queries for available networks. The
23 * Phone application lets this service interface handle carrier
39 * Tells the service that the requested query is to be ignored.
TelephonyDebugService.java 20 import android.app.Service;
29 * A debug service for telephony.
31 public class TelephonyDebugService extends Service {

Completed in 652 milliseconds

<<21222324252627282930>>