Searched refs:service (Results 126 - 150 of 1144) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DStateController.java41 StateController(JobSchedulerService service) { argument
42 mService = service;
43 mStateChangedListener = service;
44 mContext = service.getTestableContext();
45 mLock = service.getLock();
46 mConstants = service.getConstants();
/frameworks/base/core/java/android/nfc/cardemulation/
H A DCardEmulation.java55 * card emulation service for a certain category. This will
57 * replace the current default service with the service
74 * The service {@link ComponentName} object passed in as an
95 * <p>In this mode, the user has set a default service for this
101 * that the default service has registered in this category,
102 * that service will automatically be bound to to handle
112 * is selected, the user is asked which service he wants to use to handle
113 * the transaction, even if there is only one matching service.
121 * or {@link OffHostApduService}, the user will only be asked to select a service
134 CardEmulation(Context context, INfcCardEmulation service) argument
202 isDefaultServiceForCategory(ComponentName service, String category) argument
233 isDefaultServiceForAid(ComponentName service, String aid) argument
325 registerAidsForService(ComponentName service, String category, List<String> aids) argument
361 getAidsForService(ComponentName service, String category) argument
398 removeAidsForService(ComponentName service, String category) argument
446 setPreferredService(Activity activity, ComponentName service) argument
538 setDefaultServiceForCategory(ComponentName service, String category) argument
561 setDefaultForNextTap(ComponentName service) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DINotificationListener.aidl17 package android.service.notification;
22 import android.service.notification.NotificationStats;
23 import android.service.notification.IStatusBarNotificationHolder;
24 import android.service.notification.StatusBarNotification;
25 import android.service.notification.NotificationRankingUpdate;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java58 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s,
63 * events implement and register an accessibility service which extends
100 * Activity action: Launch UI to manage which accessibility service or feature is assigned
189 * enabled or disabled, or changes to the {@link AccessibilityServiceInfo} of a running service.
346 * @param service An interface to the backing service.
351 public AccessibilityManager(Context context, IAccessibilityManager service, int userId) { argument
358 tryConnectToServiceLocked(service);
366 * @param service An interface to the backing service
371 AccessibilityManager(Handler handler, IAccessibilityManager service, int userId) argument
1115 tryConnectToServiceLocked(IAccessibilityManager service) argument
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dservice_dispatcher.cpp8 #include <pdx/service.h>
71 int ServiceDispatcher::AddService(const std::shared_ptr<Service>& service) { argument
76 event.data.ptr = service.get();
78 if (epoll_ctl(epoll_fd_.Get(), EPOLL_CTL_ADD, service->endpoint()->epoll_fd(),
80 ALOGE("Failed to add service to dispatcher because: %s\n", strerror(errno));
84 services_.push_back(service);
88 int ServiceDispatcher::RemoveService(const std::shared_ptr<Service>& service) { argument
91 // It's dangerous to remove a service while other threads may be using it.
96 if (epoll_ctl(epoll_fd_.Get(), EPOLL_CTL_DEL, service->endpoint()->epoll_fd(),
98 ALOGE("Failed to remove service fro
162 Service* service = static_cast<Service*>(events[i].data.ptr); local
[all...]
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DTransport.java55 // The list of callbacks indexed by service id.
103 * @param service The service to whom the message is addressed.
108 public boolean sendMessage(int service, int what, ByteBuffer content) { argument
109 checkServiceId(service);
122 mOutputBuffer.putShort((short)service);
174 * Registers a service and provides a callback to receive messages.
176 * @param service The service id.
179 public void registerService(int service, Callbac argument
195 unregisterService(int service) argument
203 dispatchMessageReceived(int service, int what, ByteBuffer content) argument
216 checkServiceId(int service) argument
247 onMessageReceived(int service, int what, ByteBuffer content) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotificationManager.java42 import android.service.notification.StatusBarNotification;
43 import android.service.notification.ZenModeConfig;
282 * since a foreground service is supposed to be something the user cares about so it does
354 * All {@link android.service.notification.NotificationListenerService listener services} will
378 INotificationManager service = getService();
405 service.enqueueNotificationWithTag(pkg, mContext.getOpPackageName(), tag, id,
443 INotificationManager service = getService();
447 service.cancelNotificationWithTag(pkg, tag, id, user.getIdentifier());
459 INotificationManager service = getService();
463 service
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/development/
H A DSystemPropPoker.java69 IBinder checkService(String service) { argument
70 return ServiceManager.checkService(service);
80 for (String service : services) {
81 IBinder obj = checkService(service);
89 Log.i(TAG, "Someone wrote a bad service '" + service
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DQSTileServiceWrapper.java19 import android.service.quicksettings.IQSService;
20 import android.service.quicksettings.IQSTileService;
21 import android.service.quicksettings.Tile;
30 public QSTileServiceWrapper(IQSTileService service) { argument
31 mService = service;
/frameworks/native/services/vr/hardware_composer/
H A Dvr_hardware_composer_service.cpp27 // Register the hwbinder HWC HAL service used by SurfaceFlinger while in VR
29 android::sp<android::dvr::VrHwc> service = new android::dvr::VrHwc(); local
31 LOG_ALWAYS_FATAL_IF(!service.get(), "Failed to get service");
32 LOG_ALWAYS_FATAL_IF(service->isRemote(), "Service is remote");
35 LOG_ALWAYS_FATAL_IF(service->registerAsService(instance) != android::OK,
36 "Failed to register service");
39 new android::dvr::VrComposer(service.get());
43 // Register the binder service used by VR Window Manager service t
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHidDevice.java397 Log.d(TAG, "Binding HID Device service...");
402 + "service: ", e);
405 + "service: ", e);
408 Log.d(TAG, "Unbinding service...");
417 public void onServiceConnected(ComponentName className, IBinder service) {
419 mService = IBluetoothHidDevice.Stub.asInterface(service);
495 final IBluetoothHidDevice service = mService;
496 if (service != null) {
498 return service.getConnectedDevices();
503 Log.w(TAG, "Proxy not attached to service");
[all...]
/frameworks/base/core/java/android/os/
H A DServiceManager.java106 // Find the service manager
113 * Returns a reference to a service with the given name.
115 * @param name the name of the service to get
116 * @return a reference to the service, or <code>null</code> if the service doesn't exist
120 IBinder service = sCache.get(name);
121 if (service != null) {
122 return service;
133 * Returns a reference to a service with the given name, or throws
148 * Place a new @a service calle
154 addService(String name, IBinder service) argument
167 addService(String name, IBinder service, boolean allowIsolated) argument
181 addService(String name, IBinder service, boolean allowIsolated, int dumpPriority) argument
[all...]
H A DDeviceIdleManager.java25 * Access to the service that keeps track of device idleness and drives low power mode based on
39 public DeviceIdleManager(@NonNull Context context, @NonNull IDeviceIdleController service) { argument
41 mService = service;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeController.java21 import android.service.notification.Condition;
22 import android.service.notification.ZenModeConfig;
23 import android.service.notification.ZenModeConfig.ZenRule;
/frameworks/base/tests/Internal/src/android/service/wallpaper/
H A DWallpaperServiceTest.java17 package android.service.wallpaper;
36 WallpaperService service = new WallpaperService() {
47 WallpaperService.Engine engine = service.onCreateEngine();
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DServiceCompat.java43 * service's process is killed while it is started (after returning from
46 * re-create the service. Because it is in the started state, it will
48 * the new service instance; if there are not any pending start commands to be
49 * delivered to the service, it will be called with a null intent
53 * and stopped to run for arbitrary periods of time, such as a service
62 * {@link #stopForeground(Service, int)} removes it, or the service is destroyed.
68 * to {@link Service#startForeground(int, Notification)} will be detached from the service.
70 * notification will remain shown, but be completely detached from the service and so no longer
91 * Remove the passed service from foreground state, allowing it to be killed if
97 public static void stopForeground(@NonNull Service service, argument
[all...]
/frameworks/base/core/java/android/service/carrier/
H A DICarrierMessagingService.aidl17 package android.service.carrier;
20 import android.service.carrier.ICarrierMessagingCallback;
21 import android.service.carrier.MessagePdu;
25 * This service can only be implemented by a carrier privileged app.
31 * The service will call callback.onFilterComplete with the filtering result.
45 * The service will call {@link ICarrierMessagingCallback#onSendSmsComplete} with the send
59 * The service will call {@link ICarrierMessagingCallback#onSendSmsComplete} with the send
74 * The service will call {@link ICarrierMessagingCallback#onSendMultipartSmsComplete}
88 * The service will call {@link ICarrierMessagingCallback#onSendMmsComplete} with the send
102 * The service wil
[all...]
/frameworks/base/core/java/android/service/textclassifier/
H A DITextClassifierService.aidl17 package android.service.textclassifier;
19 import android.service.textclassifier.ITextClassificationCallback;
20 import android.service.textclassifier.ITextLinksCallback;
21 import android.service.textclassifier.ITextSelectionCallback;
/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...]
/frameworks/base/core/proto/android/service/
H A Denums.proto18 package android.service;
H A Dnetwork_watchlist.proto18 package com.android.service;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wrapper/
H A DBluetoothA2dpWrapper.java32 public BluetoothA2dpWrapper(BluetoothA2dp service) { argument
33 mService = service;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiMhlLocalDeviceStub.java16 protected HdmiMhlLocalDeviceStub(HdmiControlService service, int portId) { argument
17 mService = service;
/frameworks/base/services/robotests/src/com/android/server/testing/shadows/
H A DFrameworkShadowContextImpl.java31 Intent service,
35 return bindService(service, connection, flags);
30 bindServiceAsUser( Intent service, ServiceConnection connection, int flags, UserHandle user) argument
/frameworks/opt/net/lowpan/build/
H A Dlowpan.mk16 include frameworks/opt/net/lowpan/build/lowpan-service.mk

Completed in 509 milliseconds

1234567891011>>