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

<<11121314151617181920>>

  /external/selinux/mcstrans/utils/
valgrind-mcstransd 2 service mcstrans stop
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_call.h 37 // * `UntypedCall<Service>`: The base class represents a call that
38 // could be associated with any of the methods on a service of type
39 // `Service`. Also defines a `Tag` nested class that can be used as
41 // instantiates `Service` should have a completion queue polling
42 // loop that knows about `UntypedCall<Service>::Tag` objects, and
45 // * `Call<Service, GrpcService, Req, Resp>`: This class extends
46 // `UntypedCall<Service>` and is additionally parameterized by the
47 // gRPC-generated asynchronous service class, and the request and
50 // pointer to a `Service::HandleFoo()` handler method. Each
51 // `Service::HandleFoo()` method knows about the correspondin
    [all...]
  /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");
  /frameworks/base/core/java/android/hardware/
SerialManager.java 39 public SerialManager(Context context, ISerialManager service) {
41 mService = service;
  /frameworks/base/core/java/android/service/autofill/
IAutofillFieldClassificationService.aidl 17 package android.service.autofill;
25 * Service used to calculate match scores for Autofill Field Classification.
  /frameworks/base/core/java/com/android/server/
LocalServices.java 39 * Returns a local service instance that implements the specified interface.
41 * @param type The type of service.
42 * @return The service object.
52 * Adds a service instance of the specified interface to the global registry of local services.
54 public static <T> void addService(Class<T> type, T service) {
57 throw new IllegalStateException("Overriding service registration");
59 sLocalServiceObjects.put(type, service);
64 * Remove a service instance, must be only used in tests.
  /frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
TestContext.java 34 public <S> void injectSystemService(Class<S> cls, S service) {
36 mInjectedSystemServices.put(name, service);
47 Log.d(TAG, "return mocked system service for " + name);
50 Log.d(TAG, "return real system service for " + name);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
PrintSpoolerProvider.java 51 public void onServiceConnected(ComponentName name, IBinder service) {
52 mSpooler = ((PrintSpoolerService.PrintSpooler) service).getService();
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeZenModeController.java 19 import android.service.notification.ZenModeConfig;
20 import android.service.notification.ZenModeConfig.ZenRule;
  /frameworks/base/services/core/java/com/android/server/content/
ContentShellCommand.java 28 ContentShellCommand(IContentService service) {
29 mInterface = service;
60 pw.println("Content service commands:");
  /frameworks/native/libs/vr/libpdx/private/pdx/
service_dispatcher.h 14 class Service;
17 * ServiceDispatcher manages a list of Service instances and handles message
29 * Adds a service to the list of services handled by this dispatcher. This
33 * Returns 0 on success; -EEXIST if the service was already added.
35 int AddService(const std::shared_ptr<Service>& service);
38 * Removes a service from this dispatcher. This will fail if any threads are
41 * Returns 0 on success; -ENOENT if the service was not previously added;
44 int RemoveService(const std::shared_ptr<Service>& service);
    [all...]
  /frameworks/native/libs/vr/libvrflinger/
display_surface.h 5 #include <pdx/service.h>
31 DisplayService* service, int surface_id, int process_id, int user_id,
36 DisplayService* service() const { return service_; } function in class:android::dvr::DisplaySurface
55 DisplaySurface(DisplayService* service, SurfaceType surface_type,
110 // Subset of attributes that may be interpreted by the display service.
120 ApplicationDisplaySurface(DisplayService* service, int surface_id,
122 : DisplaySurface(service, SurfaceType::Application, surface_id,
140 DirectDisplaySurface(DisplayService* service, int surface_id, int process_id,
142 : DisplaySurface(service, SurfaceType::Direct, surface_id, process_id,
vr_flinger.cpp 65 std::shared_ptr<android::pdx::Service> service;
77 CHECK_ERROR(!dispatcher_, error, "Failed to create service dispatcher.");
81 CHECK_ERROR(!display_service_, error, "Failed to create display service.");
84 service = android::dvr::DisplayManagerService::Create(display_service_);
85 CHECK_ERROR(!service, error, "Failed to create display manager service.");
86 dispatcher_->AddService(service);
88 service = android::dvr::VSyncService::Create();
89 CHECK_ERROR(!service, error, "Failed to create vsync service.")
    [all...]
  /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/automotive/vehicle/2.0/default/
VehicleService.cpp 17 #define LOG_TAG "automotive.vehicle@2.0-service"
34 auto service = std::make_unique<VehicleHalManager>(hal.get()); local
38 ALOGI("Registering as service...");
39 status_t status = service->registerAsService();
42 ALOGE("Unable to register vehicle service (%d)", status);
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MapClientService.java 66 Log.w(TAG, "getMapClientService(): service is null");
70 Log.w(TAG, "getMapClientService(): service is not available ");
367 Binder(MapClientService service) {
371 mService = service;
398 MapClientService service = getService(); local
399 if (service == null) {
402 return service.getConnectionState(device) == BluetoothProfile.STATE_CONNECTED;
410 MapClientService service = getService(); local
411 if (service == null) {
414 return service.connect(device)
422 MapClientService service = getService(); local
434 MapClientService service = getService(); local
446 MapClientService service = getService(); local
458 MapClientService service = getService(); local
467 MapClientService service = getService(); local
476 MapClientService service = getService(); local
486 MapClientService service = getService(); local
499 MapClientService service = getService(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 51 * Provides Bluetooth Pan Device profile, as a service in
90 Log.w(TAG, "getPanService(): service is null");
94 Log.w(TAG, "getPanService(): service is not available ");
206 * Handlers for incoming service calls
235 PanService service = getService(); local
236 if (service == null) {
239 return service.connect(device);
244 PanService service = getService(); local
245 if (service == null) {
248 return service.disconnect(device)
253 PanService service = getService(); local
261 PanService service = getService(); local
272 PanService service = getService(); local
282 PanService service = getService(); local
291 PanService service = getService(); local
301 PanService service = getService(); local
310 PanService service = getService(); local
603 INetworkManagementService service = INetworkManagementService.Stub.asInterface(b); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/testing/
InjectedServices.java 29 * with this class to see if a particular service has been overridden.
53 public void setSystemService(String name, Object service) {
58 mSystemServices.put(name, service);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IPolicyService.aidl 16 package com.android.emailcommon.service;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowTileService.java 4 import android.service.quicksettings.Tile;
5 import android.service.quicksettings.TileService;
  /packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/
TestInputControlConnection.java 27 * Connection for controlling the Test TV Input Service.
39 public void onServiceConnected(ComponentName name, IBinder service) {
40 mControl = ITestInputControl.Stub.asInterface(service);
45 Log.w(TAG, "TestInputControl service disconnected unexpectedly.");
49 /** Is the service currently connected. */
  /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);
  /packages/services/Car/procfs-inspector/client/src/com/android/car/procfsinspector/
ProcfsInspector.java 32 private ProcfsInspector(IProcfsInspector service) {
33 mService = service;
  /packages/services/Car/tools/keventreader/client/src/com/android/car/keventreader/
EventReaderService.java 29 private EventReaderService(IEventProvider service) {
30 mService = Objects.requireNonNull(service);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/caif/
caif_socket.h 63 * the service to connect to on the modem.
77 * enum caif_at_type - AT Service Endpoint
97 * enum caif_debug_service - Debug Service Endpoint
98 * @CAIF_RADIO_DEBUG_SERVICE: Debug service on the Radio sub-system
117 * @u.util.service: Utility service name.
136 * @u.dbg.service: Service sub-system to connect (caif_debug_service
139 * CAIF Channel. It defines the service to connect to on the modem.
148 char service[16] member in struct:sockaddr_caif::__anon62393::__anon62395
160 __u8 service; \/* service:caif_debug_service *\/ member in struct:sockaddr_caif::__anon62393::__anon62398
    [all...]

Completed in 425 milliseconds

<<11121314151617181920>>