Searched refs:service (Results 76 - 100 of 206) sorted by relevance

123456789

/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.h39 MetadataRetrieverClient(const sp<IMediaPlayerService>& service, pid_t pid, int32_t connId);
H A DMediaRecorderClient.h64 const sp<MediaPlayerService>& service,
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java36 import android.service.wallpaper.WallpaperService;
44 * This class is used to specify meta information of a wallpaper service.
79 * @param service The ResolveInfo returned from the package manager about
82 public WallpaperInfo(Context context, ResolveInfo service) argument
84 mService = service;
85 ServiceInfo si = service.serviceInfo;
161 * Return the class name of the service component that implements
177 * Return the component of the service that implements this wallpaper.
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java182 * <p>In particular, you may <i>not</i> show a dialog or bind to a service from
186 * send a command to the service.
474 * to interact with a service that is already running, you can use
511 * Provide a binder to an already-running service. This method is synchronous
512 * and will not start the target service if it is not present, so it is safe
516 * @param service The Intent indicating the service you wish to use. See {@link
519 public IBinder peekService(Context myContext, Intent service) { argument
523 service.setAllowFds(false);
524 binder = am.peekService(service, servic
[all...]
H A DContext.java134 * Flag for {@link #bindService}: automatically create the service as long
135 * as the binding exists. Note that while this will create the service,
139 * this still provides you with access to the service object while the
140 * service is created.
144 * consider's the target service's process to be. When set, the only way
145 * for it to be raised was by binding from a service in which case it will
168 * the target service's process to the foreground scheduling priority.
174 * and the target service is in a background process.
180 * binding to this service considers the service t
1584 startService(Intent service) argument
1613 stopService(Intent service) argument
1618 startServiceAsUser(Intent service, UserHandle user) argument
1623 stopServiceAsUser(Intent service, UserHandle user) argument
1672 bindService(Intent service, ServiceConnection conn, int flags) argument
1680 bindService(Intent service, ServiceConnection conn, int flags, int userHandle) argument
[all...]
H A DContextWrapper.java449 public ComponentName startService(Intent service) { argument
450 return mBase.startService(service);
460 public ComponentName startServiceAsUser(Intent service, UserHandle user) { argument
461 return mBase.startServiceAsUser(service, user);
471 public boolean bindService(Intent service, ServiceConnection conn, argument
473 return mBase.bindService(service, conn, flags);
478 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userHandle) { argument
479 return mBase.bindService(service, conn, flags, userHandle);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java41 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s,
46 * events implement and register an accessibility service which extends
181 IAccessibilityManager service = IAccessibilityManager.Stub.asInterface(iBinder);
182 sInstance = new AccessibilityManager(context, service, userId);
189 * @param service An interface to the backing service.
194 public AccessibilityManager(Context context, IAccessibilityManager service, int userId) { argument
196 mService = service;
231 * the centralized accessibility manager service.
261 // it is possible that this manager is in the same process as the service bu
[all...]
/frameworks/base/core/java/android/webkit/
H A DUrlInterceptRegistry.java132 CacheResult result = handler.service(url, headers);
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DUrlInterceptRegistryTest.java47 public CacheResult service(String url, Map<String, String> headers) { method in class:UrlInterceptRegistryTest.MockUrlInterceptHandler
/frameworks/native/include/binder/
H A DIServiceManager.h36 * Retrieve an existing service, blocking for a few seconds
42 * Retrieve an existing service, non-blocking.
47 * Register a service.
50 const sp<IBinder>& service,
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java87 * @param service The ResolveInfo returned from the package manager about
90 public InputMethodInfo(Context context, ResolveInfo service) argument
92 this(context, service, null);
99 * @param service The ResolveInfo returned from the package manager about
104 public InputMethodInfo(Context context, ResolveInfo service, argument
107 mService = service;
108 ServiceInfo si = service.serviceInfo;
260 * Return the class name of the service component that implements
276 * Return the component of the service that implements this input
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowToken.java107 mAnimator = service.mAnimator;
191 Message m = service.mH.obtainMessage(
193 service.mH.sendMessage(m);
202 Message m = service.mH.obtainMessage(
207 service.mH.sendMessage(m);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java220 * to bind to the service.
303 Log.w(TAG, "Unable to load service info " + resolveInfo.toString());
308 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
310 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
336 changes.append(" New service added: ").append(info).append("\n");
344 changes.append(" Existing service (nop): ").append(info).append("\n");
350 changes.append(" System service replacing existing: ").append(info)
353 changes.append(" Existing service replacing a removed service: ")
361 changes.append(" Existing service wit
413 parseServiceInfo(ResolveInfo service) argument
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java386 public ComponentName startService(Intent service) { argument
391 public boolean stopService(Intent service) { argument
397 public ComponentName startServiceAsUser(Intent service, UserHandle user) { argument
403 public boolean stopServiceAsUser(Intent service, UserHandle user) { argument
408 public boolean bindService(Intent service, ServiceConnection conn, int flags) { argument
414 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userId) { argument
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java158 public void onServiceConnected(ComponentName name, IBinder service) {
159 Log.i(TAG, "Service connected " + name + " " + service);
232 public void onServiceConnected(ComponentName name, IBinder service) {
233 Log.i(TAG, "Service connected " + name + " " + service);
255 public void onServiceConnected(ComponentName name, IBinder service) {
256 Log.i(TAG, "Service connected " + name + " " + service);
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp1340 static audio_module_handle_t aps_load_hw_module(void *service, argument
1353 static audio_io_handle_t aps_open_output(void *service, argument
1371 static audio_io_handle_t aps_open_output_on_module(void *service, argument
1389 static audio_io_handle_t aps_open_dup_output(void *service, argument
1401 static int aps_close_output(void *service, audio_io_handle_t output) argument
1410 static int aps_suspend_output(void *service, audio_io_handle_t output) argument
1421 static int aps_restore_output(void *service, audio_io_handle_t output) argument
1433 static audio_io_handle_t aps_open_input(void *service, argument
1449 static audio_io_handle_t aps_open_input_on_module(void *service, argument
1465 static int aps_close_input(void *service, audio_io_handle_ argument
1474 aps_set_stream_output(void *service, audio_stream_type_t stream, audio_io_handle_t output) argument
1484 aps_move_effects(void *service, int session, audio_io_handle_t src_output, audio_io_handle_t dst_output) argument
1495 aps_get_parameters(void *service, audio_io_handle_t io_handle, const char *keys) argument
1502 aps_set_parameters(void *service, audio_io_handle_t io_handle, const char *kv_pairs, int delay_ms) argument
1510 aps_set_stream_volume(void *service, audio_stream_type_t stream, float volume, audio_io_handle_t output, int delay_ms) argument
1520 aps_start_tone(void *service, audio_policy_tone_t tone, audio_stream_type_t stream) argument
1528 aps_stop_tone(void *service) argument
1535 aps_set_voice_volume(void *service, float volume, int delay_ms) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java28 * <p>Every Bluetooth class is composed of zero or more service classes, and
35 * service discovery is done through SDP requests, which are automatically
102 * Defines all service class constants.
103 * <p>Each {@link BluetoothClass} encodes zero or more service classes.
120 * Return true if the specified service class is supported by this
122 * <p>Valid service classes are the public constants in
126 * @param service valid service class
127 * @return true if the service class is supported
129 public boolean hasService(int service) { argument
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java227 public UsbManager(Context context, IUsbManager service) { argument
229 mService = service;
/frameworks/base/core/java/android/os/
H A DPowerManager.java298 public PowerManager(Context context, IPowerManager service, Handler handler) { argument
300 mService = service;
345 * Returns true if the twilight service should be used to adjust screen brightness
781 * service is performing work on behalf of an application so that the
H A DUserManager.java39 public UserManager(Context context, IUserManager service) { argument
40 mService = service;
/frameworks/base/core/tests/coretests/src/android/os/
H A DBinderThreadPriorityTest.java39 public void onServiceConnected(ComponentName name, IBinder service) {
41 mService = IBinderThreadPriorityService.Stub.asInterface(service);
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java67 AccessibilityInputFilter(Context context, AccessibilityManagerService service) { argument
70 mAms = service;
137 // into the accessibility manager service similarly
/frameworks/base/services/java/com/android/server/am/
H A DAppNotRespondingDialog.java42 public AppNotRespondingDialog(ActivityManagerService service, Context context, argument
46 mService = service;
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java33 * newly created or downloaded media file to the media scanner service.
34 * The media scanner service will read metadata from the file and add
37 * media scanner service to return the Uri for a newly scanned file
75 * when a connection to the MediaScanner service has been established
81 * MediaScanner service has been established.
98 * the media scanner service.
108 * Initiates a connection to the media scanner service.
123 * Releases the connection to the media scanner service.
144 * Returns whether we are connected to the media scanner service
219 * the media scanner service
241 onServiceConnected(ComponentName className, IBinder service) argument
[all...]
/frameworks/base/core/java/android/service/dreams/
H A DSandman.java17 package android.service.dreams;
32 * <code>UiModeManagerService</code> system service and the <code>Somnambulator</code> activity.

Completed in 405 milliseconds

123456789