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

1 2

  /frameworks/native/services/inputflinger/host/
InputDriver.h 131 const input_module_t* mHal;
  /packages/services/Car/service/src/com/android/car/hal/
SensorHalServiceBase.java 47 protected final VehicleHal mHal;
51 mHal = hal;
117 mHal.subscribeProperty(this, config.prop, fixSamplingRateForProperty(config, rate));
128 mHal.unsubscribeProperty(this, config.prop);
142 return mHal.get(config.prop);
InputHalService.java 41 private final VehicleHal mHal;
54 mHal = hal;
65 mHal.subscribeProperty(this, HW_KEY_INPUT);
  /frameworks/base/services/core/jni/
com_android_server_ConsumerIrService.cpp 35 static sp<IConsumerIr> mHal;
39 mHal = IConsumerIr::getService();
40 return mHal != nullptr;
52 bool success = mHal->transmit(carrierFrequency, patternVec);
65 mHal->getCarrierFreqs(cb);
  /frameworks/rs/
rsFBOCache.h 53 Hal mHal;
rsProgramRaster.h 48 Hal mHal;
rsScriptGroupBase.h 35 Hal mHal;
rsMesh.h 56 Hal mHal;
69 mHal.state.vertexBuffers[index] = vb;
74 mHal.state.indexBuffers[index] = idx;
75 mHal.state.primitives[index] = prim;
rsProgramStore.h 60 Hal mHal;
rsSampler.h 54 Hal mHal;
rsProgram.h 59 Hal mHal;
rsType.h 62 Hal mHal;
73 uint32_t getDimX() const {return mHal.state.dimX;}
74 uint32_t getDimY() const {return mHal.state.dimY;}
75 uint32_t getDimZ() const {return mHal.state.dimZ;}
77 bool getDimFaces() const {return mHal.state.faces;}
78 uint32_t getDimYuv() const {return mHal.state.dimYuv;}
80 if (idx < mHal.state.arrayCount) {
81 return mHal.state.arrays[idx];
87 rsAssert(lod < mHal.state.lodCount);
88 return mHal.state.lodDimX[lod]
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehicleHalManager.h 52 : mHal(vehicleHal),
106 VehicleHal* mHal;
  /hardware/interfaces/graphics/allocator/2.0/utils/hal/include/allocator-hal/2.0/
Allocator.h 47 mHal = std::move(hal);
53 hidl_cb(mHal->dumpDebugInfo());
61 Error error = mHal->allocateBuffers(descriptor, count, &stride, &buffers);
71 mHal->freeBuffers(buffers);
77 std::unique_ptr<Hal> mHal;
  /packages/services/Car/service/src/com/android/car/
VmsSubscriberService.java 51 private final VmsHalService mHal;
93 mHal.removeDeadSubscriber(subscriber);
199 mHal = hal;
205 mHal.addSubscriberListener(this);
211 mHal.removeSubscriberListener(this);
232 if (mHal.containsSubscriber(subscriber)) {
247 mHal.addSubscription(subscriber, layer);
256 mHal.removeSubscription(subscriber, layer);
270 mHal.addSubscription(subscriber, layer, publisherId);
281 mHal.removeSubscription(subscriber, layer, publisherId)
    [all...]
VmsPublisherService.java 64 private final VmsHalService mHal;
75 mHal = hal;
88 mHal.addPublisherListener(mHalPublisherListener);
141 mHal.removePublisherListener(mHalPublisherListener);
161 mHal.setPublisherLayersOffering(token, offering);
174 mHal.getSubscribersForLayerFromPublisher(layer, publisherId);
188 if (mHal.isHalSubscribed(layer)) {
190 mHal.setDataMessage(layer, payload);
200 return mHal.getSubscriptionState();
207 return mHal.getPublisherId(publisherInfo)
    [all...]
CarPropertyService.java 58 private final PropertyHalService mHal;
67 mHal = hal;
149 mHal.setListener(null);
167 ICarImpl.assertPermission(mContext, mHal.getReadPermission(propId));
193 mHal.setListener(this);
196 if (rate > mHal.getSampleRate(propId)) {
197 mHal.subscribeProperty(propId, rate);
204 CarPropertyValue value = mHal.getProperty(propId, areaId);
223 ICarImpl.assertPermission(mContext, mHal.getReadPermission(propId));
255 mHal.unsubscribeProperty(propId)
    [all...]
ICarImpl.java 60 private final VehicleHal mHal;
110 mHal = new VehicleHal(vehicle);
113 mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
115 mCarPropertyService = new CarPropertyService(serviceContext, mHal.getPropertyHal());
122 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
137 mVmsSubscriberService = new VmsSubscriberService(serviceContext, mHal.getVmsHal());
138 mVmsPublisherService = new VmsPublisherService(serviceContext, mHal.getVmsHal());
139 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
182 mHal.init();
196 mHal.release()
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
VehicleEmulator.h 75 : mHal { hal },
78 mHal->registerEmulator(this);
103 EmulatedVehicleHalIface* mHal;
  /hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
Composer.h 52 ComposerImpl(std::unique_ptr<Hal> hal) : mHal(std::move(hal)) {}
65 if (mHal->hasCapability(static_cast<hwc2_capability_t>(cap))) {
77 hidl_cb(mHal->dumpDebugInfo());
130 auto client = ComposerClient::create(mHal.get());
141 const std::unique_ptr<Hal> mHal;
  /hardware/interfaces/graphics/mapper/2.0/utils/hal/include/mapper-hal/2.0/
Mapper.h 43 mHal = std::move(hal);
52 Error error = mHal->createDescriptor(descriptorInfo, &descriptor);
65 Error error = mHal->importBuffer(rawHandle.getNativeHandle(), &bufferHandle);
73 mHal->freeBuffer(bufferHandle);
88 return mHal->freeBuffer(bufferHandle);
107 error = mHal->lock(bufferHandle, cpuUsage, accessRegion, std::move(fenceFd), &data);
129 error = mHal->lockYCbCr(bufferHandle, cpuUsage, accessRegion, std::move(fenceFd), &layout);
142 Error error = mHal->unlock(bufferHandle, &fenceFd);
198 std::unique_ptr<Hal> mHal;
  /packages/services/Car/tests/carservice_test/src/com/android/car/
VmsPublisherPermissionsTest.java 91 MockedVehicleHal mHal = getMockedVehicleHal();
92 mHal.injectEvent(getHalSubscriptionRequest());
  /system/nfc/src/include/
NfcAdaptation.h 100 static android::sp<android::hardware::nfc::V1_0::INfc> mHal;
  /hardware/nxp/nfc/halimpl/src/include/
EseAdaptation.h 93 mHal;
  /system/libhidl/transport/token/1.0/utils/include/hidl/
HybridInterface.h 185 virtual sp<HalInterface> getHalInterface() { return mHal; }
192 sp<HalInterface> mHal;
324 mHal = HalInterface::castFrom(hBase);
325 if (mHal != nullptr) {
326 mBase = new CONVERTER(mHal);

Completed in 645 milliseconds

1 2