Searched defs:service (Results 176 - 200 of 441) sorted by relevance

1234567891011>>

/frameworks/native/services/vr/bufferhubd/
H A Dproducer_queue_channel.cpp17 ProducerQueueChannel::ProducerQueueChannel(BufferHubService* service, argument
22 : BufferHubChannel(service, channel_id, channel_id, kProducerQueueType),
38 BufferHubService* service, int channel_id, size_t meta_size_bytes,
53 service, channel_id, meta_size_bytes, usage_policy, &error));
115 service(), buffer_id(), channel_id, shared_from_this());
124 service()->SetChannel(channel_id, consumer_queue_channel);
224 ProducerChannel::Create(service(), buffer_id, width, height, layer_count,
241 service()->SetChannel(buffer_id, producer_channel);
37 Create( BufferHubService* service, int channel_id, size_t meta_size_bytes, const UsagePolicy& usage_policy) argument
/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsSession.java46 ICustomTabsService service, ICustomTabsCallback callback, ComponentName componentName) {
47 mService = service;
45 CustomTabsSession( ICustomTabsService service, ICustomTabsCallback callback, ComponentName componentName) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDrm.cpp38 sp<IMediaDrmService> service = interface_cast<IMediaDrmService>(binder); local
39 if (service == NULL) {
44 sp<IDrm> drm = service->makeDrm();
65 sp<IMediaDrmService> service = interface_cast<IMediaDrmService>(binder); local
66 if (service == NULL) {
72 sp<ICrypto> crypto = service->makeCrypto();
/frameworks/av/radio/
H A DRadio.cpp51 ALOGW("Radio service died!");
87 const sp<IRadioService> service = getRadioService(); local
88 if (service == 0) {
91 return service->listModules(properties, numModules);
101 const sp<IRadioService> service = getRadioService(); local
102 if (service == 0) {
106 status_t status = service->attach(handle, radio, config, withAudio, radio->mIRadio);
111 ALOGW("Error %d connecting to radio service", status);
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.h110 Module(const sp<SoundTriggerHwService>& service,
128 wp<SoundTriggerHwService> service() const { return mService; } function in class:android::SoundTriggerHwService::Module
198 explicit CallbackThread(const wp<SoundTriggerHwService>& service);
/frameworks/av/soundtrigger/
H A DSoundTrigger.cpp51 ALOGW("Sound trigger service died!");
87 const sp<ISoundTriggerHwService> service = getSoundTriggerHwService(); local
88 if (service == 0) {
91 return service->listModules(modules, numModules);
99 const sp<ISoundTriggerHwService> service = getSoundTriggerHwService(); local
100 if (service == 0) {
104 status_t status = service->attach(module, soundTrigger, soundTrigger->mISoundTrigger);
109 ALOGW("Error %d connecting to sound trigger service", status);
119 const sp<ISoundTriggerHwService> service = getSoundTriggerHwService(); local
120 if (service
[all...]
/frameworks/base/cmds/incidentd/src/
H A DSection.cpp247 DumpsysSection::DumpsysSection(int id, const char* service, ...) argument
249 mService(service)
252 name += service;
255 va_start(args, service);
275 // checkService won't wait for the service to show up like getService will.
276 sp<IBinder> service = defaultServiceManager()->checkService(mService); local
278 if (service == NULL) {
283 // the service is good data in and of itself. This is running in
285 ALOGW("DumpsysSection: Can't lookup service: %s", String8(mService).string());
289 service
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java106 public void onServiceAdded(int status, BluetoothGattService service) {
107 if (DBG) Log.d(TAG, "onServiceAdded() - handle=" + service.getInstanceId()
108 + " uuid=" + service.getUuid() + " status=" + status);
116 // Rewrite newly assigned handles to existing service.
117 tmp.setInstanceId(service.getInstanceId());
119 List<BluetoothGattCharacteristic> svc_chars = service.getCharacteristics();
427 Log.e(TAG, "GATT service not available");
481 * Returns a service by UUID, instance and type.
652 BluetoothGattService service = characteristic.getService();
653 if (service
687 addService(BluetoothGattService service) argument
711 removeService(BluetoothGattService service) argument
[all...]
H A DBluetoothGattService.java34 * Primary service
39 * Secondary service (included by primary services)
45 * The remote device his service is associated with.
52 * The UUID of this service.
58 * Instance ID for this service.
76 * List of characteristics included in this service.
81 * List of included services for this service.
86 * Whether the service uuid should be advertised.
94 * @param uuid The UUID for this service
95 * @param serviceType The type of this service,
220 addService(BluetoothGattService service) argument
[all...]
/frameworks/base/core/java/android/companion/
H A DCompanionDeviceManager.java35 import android.service.notification.NotificationListenerService;
42 * System level service for managing companion devices
98 @Nullable ICompanionDeviceManager service, @NonNull Context context) {
99 mService = service;
97 CompanionDeviceManager( @ullable ICompanionDeviceManager service, @NonNull Context context) argument
/frameworks/base/core/java/android/content/
H A DRestrictionsManager.java30 import android.service.restrictions.RestrictionsReceiver;
410 public RestrictionsManager(Context context, IRestrictionsManager service) { argument
412 mService = service;
/frameworks/base/core/java/android/content/pm/
H A DShortcutManager.java464 * apps with no foreground activity or service. When you attempt to call these methods
467 * <p>Apps with a foreground activity or service are not rate-limited.
592 public ShortcutManager(Context context, IShortcutService service) { argument
594 mService = service;
977 * <p>Only apps with a foreground activity or a foreground service can call this method.
1012 * service, or the device is locked.
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java46 /* package */ HdmiTvClient(IHdmiControlService service) { argument
47 super(service);
52 /* package */ static HdmiTvClient create(IHdmiControlService service) { argument
53 return new HdmiTvClient(service);
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java171 public GeofenceHardware(IGeofenceHardware service) { argument
172 mService = service;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java305 public UsbManager(Context context, IUsbManager service) { argument
307 mService = service;
/frameworks/base/core/java/android/net/
H A DIpSecManager.java144 @NonNull IIpSecService service, int direction, InetAddress remoteAddress, int spi)
146 mService = service;
394 private UdpEncapsulationSocket(@NonNull IIpSecService service, int port) argument
396 mService = service;
402 private UdpEncapsulationSocket(IIpSecService service) throws ResourceUnavailableException { argument
403 mService = service;
503 public IpSecManager(IIpSecService service) { argument
504 mService = checkNotNull(service, "missing service");
143 SecurityParameterIndex( @onNull IIpSecService service, int direction, InetAddress remoteAddress, int spi) argument
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java258 public DropBoxManager(Context context, IDropBoxManagerService service) { argument
260 mService = service;
H A DRecoverySystem.java1074 public RecoverySystem(IRecoverySystem service) { argument
1075 mService = service;
/frameworks/base/core/java/android/service/autofill/
H A DFillResponse.java17 package android.service.autofill;
19 import static android.service.autofill.FillRequest.INVALID_REQUEST_ID;
197 * <p>This is typically used when the service cannot autofill the view; for example, a
244 * screen, just the latest bundle is passed back to the service.
H A DSaveInfo.java17 package android.service.autofill;
84 * to populate some fields but not all, and the service would still be interested on saving the
85 * other fields. In that case, the service could set the
123 * <p>The service can also customize some aspects of the save UI affordance:
133 * Type used when the service can save the contents of a screen, but cannot describe what
175 * opt-in your service and the save prompt is an advertisement
332 * Sets the ids of additional, optional views the service would be interested to save.
352 * <p>Typically, it describes how the data will be stored by the service, so it can help
353 * users to decide whether they can trust the service to save their data.
/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingService.java17 package android.service.carrier;
31 * A service that receives calls from the system when new SMS and MMS are
33 * <p>To extend this class, you must declare the service in your manifest file with
37 * &lt;service android:name=".MyMessagingService"
41 * &lt;action android:name="android.service.carrier.CarrierMessagingService" />
43 * &lt;/service></pre>
47 * The {@link android.content.Intent} that must be declared as handled by the service.
51 = "android.service.carrier.CarrierMessagingService";
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java16 package android.service.notification;
H A DStatusBarNotification.java17 package android.service.notification;
30 * the status bar and any {@link android.service.notification.NotificationListenerService}s.
/frameworks/base/core/java/android/service/quicksettings/
H A DTileService.java16 package android.service.quicksettings;
49 * service.</p>
63 * The label and icon for the service will be used as the default label and
67 * <service
73 * <action android:name="android.service.quicksettings.action.QS_TILE" />
75 * </service>}
93 = "android.service.quicksettings.action.QS_TILE_PREFERENCES";
98 public static final String ACTION_QS_TILE = "android.service.quicksettings.action.QS_TILE";
112 * <meta-data android:name="android.service.quicksettings.ACTIVE_TILE"
118 = "android.service
[all...]
/frameworks/base/core/java/android/speech/
H A DRecognitionService.java35 * This class provides a base class for recognition service implementations. This class should be
37 * implementation of this service is stateless.
41 * The {@link Intent} that must be declared as handled by the service.
49 * <code>&lt;{@link android.R.styleable#RecognitionService recognition-service}&gt;</code> tag.
59 /** Binder of the recognition service */
182 Log.e(TAG, "call for recognition service without RECORD_AUDIO permissions");
191 * Notifies the service that it should start listening for speech.
196 * @param listener that will receive the service's callbacks
201 * Notifies the service that it should cancel the speech recognition.
206 * Notifies the service tha
337 RecognitionServiceBinder(RecognitionService service) argument
[all...]

Completed in 458 milliseconds

1234567891011>>