Searched refs:service (Results 176 - 200 of 206) sorted by relevance

123456789

/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java345 final IBinder service = data.readStrongBinder();
348 dumpService(fd.getFileDescriptor(), service, args);
360 final IBinder service = data.readStrongBinder();
363 dumpProvider(fd.getFileDescriptor(), service, args);
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java16 package android.service.dreams;
71 * <service
78 * <action android:name="android.service.dreams.DreamService" />
84 * android:name="android.service.dream"
86 * </service>
127 * The name of the dream manager service.
133 * The {@link Intent} that must be declared as handled by the service.
137 "android.service.dreams.DreamService";
145 public static final String DREAM_META_DATA = "android.service.dream";
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp59 sp<IMediaPlayerService> service = interface_cast<IMediaPlayerService>(binder); local
60 mOMX = service->getOMX();
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java54 // The delay (in millis) to wait until attempting to unbind from a service after a request.
55 // This ensures that we don't stay continually bound to the service and that it can be destroyed
129 * The service connection that gets populated when the RemoteViewsService is
172 public synchronized void onServiceConnected(IBinder service) { argument
173 mRemoteViewsFactory = IRemoteViewsFactory.Stub.asInterface(service);
764 // Strip the previously injected app widget id from service intent
781 // Initialize the cache and the service connection on startup
945 // Load the item information from the remote service
1083 // Requesting bind service will trigger a super.notifyDataSetChanged(), which will
1197 // Flush the cache so that we can reload new items from the service
[all...]
/frameworks/base/location/java/android/location/
H A DLocationManager.java285 public LocationManager(Context context, ILocationManager service) { argument
286 mService = service;
737 * result, depending on the quality of service requested in the
770 * @param request quality of service required, null for default low power
802 * @param request quality of service required, null for default low power
949 * Add a geofence with the specified LocationRequest quality of service.
962 * can choose the quality of service required using the
973 * @param request quality of service required, null for default low power
/frameworks/base/services/java/com/android/server/am/
H A DBroadcastQueue.java165 BroadcastQueue(ActivityManagerService service, String name, long timeoutPeriod) { argument
166 mService = service;
H A DActivityManagerService.java655 * Used to control how we initialize the service.
749 * Keep track of the number of service processes we last found, to
1217 "Error canceling notification for service", e);
1877 // If the app is currently using a content provider or service,
1881 if (cr.binding != null && cr.binding.service != null
1882 && cr.binding.service.app != null
1883 && cr.binding.service.app.lruSeq != mLruSeq) {
1884 updateLruProcessInternalLocked(cr.binding.service.app, i+1);
8418 // Note: ProcessRecord 'process' is guarded by the service
8908 pw.println(" s[ervices] [COMP_SPEC ...]: service stat
9988 dumpProcessList(PrintWriter pw, ActivityManagerService service, List list, String prefix, String normalLabel, String persistentLabel, String dumpPackage) argument
10009 dumpProcessOomList(PrintWriter pw, ActivityManagerService service, List<ProcessRecord> origList, String prefix, String normalLabel, String persistentLabel, boolean inclDetails, String dumpPackage) argument
10898 startService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
10920 startServiceInPackage(int uid, Intent service, String resolvedType, int userId) argument
10933 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
10948 peekService(Intent service, String resolvedType) argument
11059 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, int userId) argument
11080 publishService(IBinder token, Intent intent, IBinder service) argument
[all...]
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java248 // Check if the service is properly declared.
392 public void onServiceConnected(ComponentName name, IBinder service) { argument
393 mService = service;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalActions.java49 import android.service.dreams.DreamService;
50 import android.service.dreams.IDreamManager;
887 // Let the service state callbacks handle the state.
H A DPhoneWindowManager.java795 // re-acquire status bar service next time it is needed.
1840 // re-acquire status bar service next time it is needed.
1899 // re-acquire status bar service next time it is needed.
1924 Intent service = new Intent();
1925 service.setClassName(mContext, "com.android.server.LoadAverageService");
1930 mContext.startService(service);
1932 mContext.stopService(service);
3054 // re-acquire status bar service next time it is needed.
3238 * Tell the audio service to adjust the volume appropriate to the event.
3290 public void onServiceConnected(ComponentName name, IBinder service) {
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java413 // Service Connection to remote media container service to copy
447 public void onServiceConnected(ComponentName name, IBinder service) { argument
450 IMediaContainerService.Stub.asInterface(service);
483 Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
485 if (mContext.bindService(service, mDefContainerConn,
527 // have to bind to the service again.
529 Slog.e(TAG, "Failed to bind to media container service");
533 // Once we bind to the service, the first
539 // Already bound to the service. Just make
554 Slog.e(TAG, "Cannot bind to media container service");
8359 onServiceConnected(ComponentName name, IBinder service) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java125 * This class provides a system service that manages input methods.
188 // Used to bring IME service up to visible adjustment while it is being shown.
190 @Override public void onServiceConnected(ComponentName name, IBinder service) {
298 * The input method ID of the input method service that we are currently
315 * a service (whether or not we have gotten its IBinder back yet).
351 * If non-null, this is the input method service we are currently connected
368 * Currently enabled session. Only touched by service thread, not
928 Intent service, ServiceConnection conn, int flags) {
929 if (service == null || conn == null) {
930 Slog.e(TAG, "--- bind failed: service
927 bindCurrentInputMethodService( Intent service, ServiceConnection conn, int flags) argument
1254 onServiceConnected(ComponentName name, IBinder service) argument
[all...]
H A DMountService.java312 public void onServiceConnected(ComponentName name, IBinder service) { argument
315 IMediaContainerService imcs = IMediaContainerService.Stub.asInterface(service);
1279 * @param context Binder context for this service
2190 // have to bind to the service again.
2192 Slog.e(TAG, "Failed to bind to media container service");
2209 Slog.e(TAG, "Cannot bind to media container service");
2211 // Indicate service bind error
2234 Slog.e(TAG, "Failed to bind to media container service");
2236 // Indicate service bind error
2311 Intent service
[all...]
H A DUiModeManagerService.java42 import android.service.dreams.Sandman;
587 pw.println("Permission Denial: can't dump uimode service from from pid="
H A DSystemServer.java42 import android.service.dreams.DreamService;
295 // only initialize the power service after we have started the
296 // lights service, content providers and the battery service.
342 Slog.e("System", "************ Failure starting core service", e);
416 reportWtf("starting LockSettingsService service", e);
569 reportWtf("starting DeviceStorageMonitor service", e);
707 // need to add this service even if SamplingProfilerIntegration.isEnabled()
708 // is false, because it is this service that detects system property change and
710 // there is little overhead for running this service
[all...]
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp175 sp<IMediaPlayerService> service = interface_cast<IMediaPlayerService>(binder); local
176 CHECK(service.get() != NULL);
178 service->addBatteryData(params);
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java81 * A system service that provides account, password, and authtoken management for all
83 * {@link IAccountAuthenticator} services. This service is not accessed by users directly,
202 * This should only be called by system code. One should only call this after the service
327 for (RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> service :
329 knownAuth.add(service.type);
1759 public void onServiceConnected(ComponentName name, IBinder service) { argument
1760 mAuthenticator = IAccountAuthenticator.Stub.asInterface(service);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java32 import android.service.wallpaper.WallpaperService;
192 // TODO: Don't need this currently because the wallpaper service
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DWapPushTest.java41 * ServiceTestCase} for more information on how to write and extend service tests.
445 public void onServiceConnected(ComponentName name, IBinder service) {
447 mIVerify = IDataVerify.Stub.asInterface(service);
483 IBinder service = bindService(startIntent);
485 mWapPush = IWapPushManager.Stub.asInterface(service);
1538 * Message processing test, start service
/frameworks/base/services/java/com/android/server/accessibility/
H A DTouchExplorer.java172 // Handle to the accessibility manager service.
220 public TouchExplorer(Context context, AccessibilityManagerService service) { argument
222 mAms = service;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java267 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token, argument
270 mService = service;
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java366 final Service service = p.services.get(i);
367 if (service.info.enabled
1907 } else if (tagName.equals("service")) {
2767 mParseServiceArgs.tag = "<service>";
2852 Slog.w(TAG, "Unknown element under <service>: "
2858 outError[0] = "Bad element under <service>: " + parser.getName();
3215 // For use by package manager service for quick lookup of
3791 public final Service service; field in class:PackageParser.ServiceIntentInfo
3794 service = _service;
3800 + " " + service
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java1153 IBinder service = ServiceManager.getService("mount");
1154 if (service != null) {
1155 return IMountService.Stub.asInterface(service);
1157 Log.e(TAG, "Can't get mount service");
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp485 const sp<MediaPlayerService>& service, pid_t pid,
492 mService = service;
484 Client( const sp<MediaPlayerService>& service, pid_t pid, int32_t connId, const sp<IMediaPlayerClient>& client, int audioSessionId, uid_t uid) argument
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java17 package android.service.wallpaper;
61 * A wallpaper service is responsible for showing a live wallpaper behind
62 * applications that would like to sit on top of it. This service object
71 * The {@link Intent} that must be declared as handled by the service.
72 * To be supported, the service must also require the
78 "android.service.wallpaper.WallpaperService";
86 public static final String SERVICE_META_DATA = "android.service.wallpaper";
117 * The actual implementation of a wallpaper. A wallpaper service may
1131 * service interface. Subclasses should not override.

Completed in 836 milliseconds

123456789