HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 226 - 250 of 3439) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/google/marlin/power/
service.cpp 17 #define LOG_TAG "android.hardware.power@1.1-service.marlin"
39 android::sp<IPower> service = nullptr; local
41 ALOGI("Power HAL Service 1.1 for Marlin is starting.");
43 service = new Power();
44 if (service == nullptr) {
52 status = service->registerAsService();
54 ALOGE("Could not register service for Power HAL Iface (%d).", status);
58 ALOGI("Power Service is ready");
65 ALOGE("Power Service is shutting down");
  /external/autotest/client/cros/cellular/pseudomodem/
modem_simple.py 9 class ModemSimple(dbus.service.Interface):
20 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE,
57 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, in_signature='o',
80 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, out_signature='a{sv}')
  /external/freetype/src/base/
ftotval.c 37 FT_Service_OTvalidate service; local
57 FT_FACE_FIND_GLOBAL_SERVICE( face, service, OPENTYPE_VALIDATE );
59 if ( service )
60 error = service->validate( face,
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithFactories.java 28 public interface Service {
32 public static class ServiceImpl implements Service {
42 private static Service instance = new ServiceImpl();
44 public static Service getInstance() {
48 public static void setInstance(Service service) {
49 instance = service;
56 Service service = ServiceFactory.getInstance(); local
57 service.go()
    [all...]
  /external/ims/rcs/rcsservice/src/com/android/service/ims/
LauncherUtils.java 29 package com.android.service.ims;
36 import com.android.service.ims.RcsService;
46 * Launch the Presence service.
52 logger.debug("Launch RCS service");
56 ComponentName service = context.startService(new Intent().setComponent(comp)); local
57 if (service == null) {
58 logger.error("Could Not Start Service " + comp.toString());
65 * Stop the Presence service.
70 logger.debug("Stop RCS service");
  /external/libchrome/dbus/
dbus_statistics.h 22 SHOW_SERVICE = 0, // Service totals only
23 SHOW_INTERFACE = 1, // Service + interface totals
24 SHOW_METHOD = 2, // Service + interface + method totals
41 CHROME_DBUS_EXPORT void AddSentMethodCall(const std::string& service,
44 CHROME_DBUS_EXPORT void AddReceivedSignal(const std::string& service,
49 CHROME_DBUS_EXPORT void AddBlockingSentMethodCall(const std::string& service,
54 // of detail to show: one line per service, per interface, or per method.
67 // service+interface+method. Used in unittests.
68 CHROME_DBUS_EXPORT bool GetCalls(const std::string& service,
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccessibilityServiceTest.java 16 private MyService service ; field in class:ShadowAccessibilityServiceTest
21 service = Robolectric.setupService(MyService.class);
22 shadow = shadowOf(service);
30 service.performGlobalAction(AccessibilityService.GLOBAL_ACTION_BACK);
  /external/testng/src/test/java/test/tmp/p2/
ServiceTest.java 9 public void service() { method in class:ServiceTest
  /frameworks/base/core/java/android/bluetooth/
BluetoothAvrcpController.java 36 * Service via IPC. Use {@link BluetoothAdapter#getProfileProxy} to get
92 if (VDBG) Log.d(TAG, "Unbinding service...");
105 if (VDBG) Log.d(TAG, "Binding service...");
118 * Bluetooth AVRCP service.
142 Log.e(TAG, "Could not bind to Bluetooth AVRCP Controller Service with " + intent);
182 final IBluetoothAvrcpController service = mService; local
183 if (service != null && isEnabled()) {
185 return service.getConnectedDevices();
191 if (service == null) Log.w(TAG, "Proxy not attached to service");
201 final IBluetoothAvrcpController service = mService; local
220 final IBluetoothAvrcpController service = mService; local
241 final IBluetoothAvrcpController service = mService; local
259 final IBluetoothAvrcpController service = mService; local
279 final IBluetoothAvrcpController service = mService; local
    [all...]
  /frameworks/base/core/java/android/content/
ServiceConnection.java 22 * Interface for monitoring the state of an application service. See
23 * {@link android.app.Service} and
30 * Called when a connection to the Service has been established, with
32 * Service.
35 * client app to a service, it's possible that your app will never receive
37 * the service, such as the service crashing while being created.
39 * @param name The concrete component name of the service that has
42 * @param service The IBinder of the Service's communication channel
    [all...]
  /frameworks/base/core/java/android/service/gatekeeper/
IGateKeeperService.aidl 17 package android.service.gatekeeper;
19 import android.service.gatekeeper.GateKeeperResponse;
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionManagerInternal.java 17 package android.service.voice;
38 * Returns whether the currently selected voice interaction service supports local voice
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
ActivityManagerTest.java 30 IActivityManager service; field in class:ActivityManagerTest
34 service = ActivityManager.getService();
38 for(int userId : service.getRunningUserIds()) {
44 List<ActivityManager.RecentTaskInfo> recentTasks = service.getRecentTasks(
  /packages/services/Car/tests/carservice_unit_test/src/com/android/car/
CarConfigurationServiceTest.java 53 CarConfigurationService service = new CarConfigurationService( local
56 service.init();
58 assertThat(service.mConfigFile).isNotNull();
66 assertThat(service.getSpeedBumpConfiguration()).isEqualTo(expectedConfiguration);
72 CarConfigurationService service = new CarConfigurationService( local
75 service.init();
78 assertThat(service.mConfigFile).isNotNull();
84 CarConfigurationService service = new CarConfigurationService( local
87 service.init();
90 assertThat(service.mConfigFile).isNull()
105 CarConfigurationService service = new CarConfigurationService( local
121 CarConfigurationService service = new CarConfigurationService( local
    [all...]
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_included_service.h 19 #include "bluetooth/service.h"
37 const ::bluetooth::Service& service) // NOLINT(implicit)
38 : handle_(service.handle()),
39 uuid_(service.uuid()),
40 primary_(service.primary()){};
  /system/libfmq/tests/
Android.mk 24 android.hardware.tests.msgq@1.0-service-test \
27 LOCAL_REQUIRED_MODULES_arm64 := android.hardware.tests.msgq@1.0-service-test_32 mq_test_client_32
28 LOCAL_REQUIRED_MODULES_mips64 := android.hardware.tests.msgq@1.0-service-test_32 mq_test_client_32
29 LOCAL_REQUIRED_MODULES_x86_64 := android.hardware.tests.msgq@1.0-service-test_32 mq_test_client_32
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
StopServicesSetup.java 32 @Option(name = "service", description = "the service to stop on the device. Can be repeated.")
44 for (String service : mServices) {
45 device.executeShellCommand(String.format("stop %s", service));
57 * Adds a service to the list of services.
59 public void addService(String service) {
60 mServices.add(service);
  /cts/hostsidetests/incident/src/com/android/server/cts/
UsbIncidentTest.java 19 import android.service.usb.UsbAccessoryProto;
20 import android.service.usb.UsbDebuggingManagerProto;
21 import android.service.usb.UsbDeviceFilterProto;
22 import android.service.usb.UsbDeviceManagerProto;
23 import android.service.usb.UsbDeviceProto;
24 import android.service.usb.UsbHandlerProto;
25 import android.service.usb.UsbHostManagerProto;
26 import android.service.usb.UsbProfileGroupSettingsManagerProto;
27 import android.service.usb.UsbServiceDumpProto;
28 import android.service.usb.UsbSettingsDevicePreferenceProto
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/
DalService.java 17 package com.example.android.autofill.service.data.source;
19 import com.example.android.autofill.service.model.DalCheck;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FakeData.java 17 package com.example.android.autofill.service.model;
19 import com.example.android.autofill.service.data.source.local.db.Converters;
  /frameworks/base/core/java/android/service/carrier/
ICarrierMessagingCallback.aidl 17 package android.service.carrier;
20 * Callback interface definition for the Carrier Messaging Service client to get informed of the
  /frameworks/base/core/java/android/service/persistentdata/
IPersistentDataBlockService.aidl 17 package android.service.persistentdata;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationUpdateHandler.java 19 import android.service.notification.NotificationListenerService;
20 import android.service.notification.StatusBarNotification;
  /frameworks/base/test-mock/src/android/test/mock/
MockService.java 19 import android.app.Service;
23 * A mock {@link android.app.Service} class.
34 public static <T extends Service> void attachForTesting(Service service, Context context,
37 service.attach(
39 null, // ActivityThread not actually used in Service
  /frameworks/opt/car/services/
Android.mk 8 LOCAL_JNI_SHARED_LIBRARIES := libcar-framework-service-jni
9 LOCAL_REQUIRED_MODULES := libcar-framework-service-jni
13 LOCAL_MODULE := car-frameworks-service
33 LOCAL_MODULE := libcar-framework-service-jni

Completed in 1225 milliseconds

1 2 3 4 5 6 7 8 91011>>