HomeSort by relevance Sort by last modified time
    Searched defs:service (Results 1 - 25 of 1487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/google/cuttlefish_common/guest/commands/vsoc_input_service/
main.cpp 22 vsoc_input_service::VSoCInputService service; local
23 if (!service.SetUpDevices()) {
27 if (!service.ProcessEvents()) {
  /device/google/wahoo/wifi_offload/
service.cpp 35 LOG(android::base::INFO) << "Wifi Offload HAL service start ";
40 // Register service
41 android::sp<IOffload> service = new Offload(); local
42 CHECK_EQ(service->registerAsService(), android::NO_ERROR)
47 LOG(android::base::INFO) << "Wifi Offload HAL service exit";
  /frameworks/base/cmds/incidentd/src/
main.cpp 46 // Create the service
47 sp<IncidentService> service = new IncidentService(looper); local
48 if (defaultServiceManager()->addService(String16("incident"), service) != 0) {
49 ALOGE("Failed to add service");
  /hardware/interfaces/automotive/audiocontrol/1.0/default/
service.cpp 38 // Main service entry point
40 // Create an instance of our service class
41 android::sp<IAudioControl> service = new AudioControl(); local
44 if (service->registerAsService() != OK) {
49 // Join (forever) the thread pool we created for the service above
  /hardware/interfaces/wifi/1.2/default/
service.cpp 42 // Setup hwbinder service
43 android::sp<android::hardware::wifi::V1_2::IWifi> service = local
48 CHECK_EQ(service->registerAsService(), android::NO_ERROR)
  /cts/tests/tests/dreams/src/android/service/dreams/cts/
DreamsFeatureTest.java 17 package android.service.dreams.cts;
20 import android.service.dreams.DreamService;
21 import android.service.dreams.IDreamManager;
28 IDreamManager service = IDreamManager.Stub.asInterface( local
30 assertTrue("Dream manager service missing", service != null);
  /cts/tests/tests/externalservice/service/src/android/externalservice/service/
ExportedService.java 17 package android.externalservice.service;
ExternalNonExportedService.java 17 package android.externalservice.service;
ExternalNonIsolatedService.java 17 package android.externalservice.service;
ExternalService.java 17 package android.externalservice.service;
IsolatedService.java 17 package android.externalservice.service;
  /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");
  /device/google/marlin/usb/
service.cpp 17 #define LOG_TAG "android.hardware.usb@1.1-service.marlin"
36 android::sp<IUsb> service = new Usb(); local
39 status_t status = service->registerAsService();
42 ALOGE("Cannot register USB HAL service");
  /device/google/wahoo/power-libperfmgr/
service.cpp 17 #define LOG_TAG "android.hardware.power@1.2-service.wahoo-libperfmgr"
37 ALOGI("Power HAL Service 1.2 for Wahoo is starting");
39 android::sp<IPower> service = new Power(); local
40 if (service == nullptr) {
47 status_t status = service->registerAsService();
49 ALOGE("Could not register service for Power HAL Iface (%d), exiting.", status);
53 ALOGI("Power Service is ready");
57 ALOGE("Power Service is shutting down");
  /external/freetype/src/base/
ftfstype.c 36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_extra )
46 if ( !service->ps_get_font_extra( face, &extra ) &&
fttype1.c 33 FT_Service_PsInfo service; local
42 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
44 if ( service && service->ps_get_font_info )
45 error = service->ps_get_font_info( face, afont_info );
59 FT_Service_PsInfo service; local
64 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
66 if ( service && service->ps_has_glyph_names )
67 result = service->ps_has_glyph_names( face )
81 FT_Service_PsInfo service; local
111 FT_Service_PsInfo service = NULL; local
    [all...]
ftwinfnt.c 32 FT_Service_WinFnt service; local
42 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
44 if ( service )
45 error = service->get_header( face, header );
  /frameworks/base/core/java/android/service/autofill/
Sanitizer.java 16 package android.service.autofill;
22 * by the app&mdash;for example, if the autofill service sends a credit card number
Transformation.java 16 package android.service.autofill;
Validator.java 16 package android.service.autofill;
  /hardware/interfaces/automotive/evs/1.0/default/
service.cpp 17 #define LOG_TAG "android.hardware.automotive.evs@1.0-service"
45 ALOGI("EVS Hardware Enumerator service is starting");
46 android::sp<IEvsEnumerator> service = new EvsEnumerator(); local
50 // Register our service -- if somebody is already registered by our name,
52 status_t status = service->registerAsService(kEnumeratorServiceName);
57 ALOGE("Could not register service %s (%d).", kEnumeratorServiceName, status);
  /hardware/interfaces/cas/1.0/default/
service.cpp 18 #define LOG_TAG "android.hardware.cas@1.0-service"
32 ALOGD("android.hardware.cas@1.0-service starting...");
40 // Setup hwbinder service
41 android::sp<IMediaCasService> service = new MediaCasService(); local
42 android::status_t status = service->registerAsService();
45 "Error while registering cas service: %d", status);
  /hardware/interfaces/tests/extension/light/2.0/default/
service.cpp 16 #define LOG_TAG "android.hardware.tests.extension.light@2.0-service"
31 android::sp<ILight> service = new Light(); local
33 if (service->registerAsService() != android::OK) {
  /hardware/interfaces/usb/1.0/default/
service.cpp 35 android::sp<IUsb> service = new Usb(); local
38 status_t status = service->registerAsService();
45 ALOGE("Cannot register USB HAL service");
  /packages/services/Car/evs/sampleDriver/
service.cpp 43 ALOGI("EVS Hardware Enumerator service is starting");
44 android::sp<IEvsEnumerator> service = new EvsEnumerator(); local
48 // Register our service -- if somebody is already registered by our name,
50 status_t status = service->registerAsService(kEnumeratorServiceName);
55 ALOGE("Could not register service %s (%d).", kEnumeratorServiceName, status);

Completed in 586 milliseconds

1 2 3 4 5 6 7 8 91011>>