HomeSort by relevance Sort by last modified time
    Searched refs:mModule (Results 1 - 25 of 56) sorted by null

1 2 3

  /device/generic/goldfish/camera/
GrallocModule.h 17 return mModule->lock(mModule, handle, usage, l, t, w, h, vaddr);
24 return mModule->lock_ycbcr(mModule, handle, usage, l, t, w, h, ycbcr);
29 return mModule->unlock(mModule, handle);
39 mModule = reinterpret_cast<const gralloc_module_t*>(module);
41 const gralloc_module_t *mModule;
  /device/google/cuttlefish_common/guest/hals/camera/
GrallocModule.h 30 return mModule->lock(mModule, handle, usage, l, t, w, h, vaddr);
36 return mModule->lock_ycbcr(mModule, handle, usage, l, t, w, h, ycbcr);
41 return mModule->unlock(mModule, handle);
51 mModule = reinterpret_cast<const gralloc_module_t *>(module);
53 const gralloc_module_t *mModule;
  /hardware/libhardware/modules/usbcamera/
HotplugThread.cpp 27 : mModule(hal) {
43 (void)mModule; // silence warning about unused member.
HotplugThread.h 47 CameraHAL *mModule;
  /hardware/interfaces/power/1.0/default/
Power.cpp 32 Power::Power(power_module_t *module) : mModule(module) {
33 if (mModule)
34 mModule->init(mModule);
38 delete(mModule);
43 if (mModule->setInteractive)
44 mModule->setInteractive(mModule, interactive ? 1 : 0);
50 if (mModule->powerHint) {
52 mModule->powerHint(mModule, static_cast<power_hint_t>(hint), &param)
    [all...]
  /hardware/interfaces/boot/1.0/default/
BootControl.cpp 30 BootControl::BootControl(boot_control_module_t *module) : mModule(module){
35 return mModule->getNumberSlots(mModule);
39 return mModule->getCurrentSlot(mModule);
43 int ret = mModule->markBootSuccessful(mModule);
52 int ret = mModule->setActiveBootSlot(mModule, slot);
61 int ret = mModule->setSlotAsUnbootable(mModule, slot)
    [all...]
BootControl.h 50 boot_control_module_t* mModule;
  /hardware/interfaces/memtrack/1.0/default/
Memtrack.cpp 32 Memtrack::Memtrack(const memtrack_module_t *module) : mModule(module) {
33 if (mModule)
34 mModule->init(mModule);
38 delete(mModule);
48 if (mModule->getMemory == nullptr)
53 ret = mModule->getMemory(mModule, pid, static_cast<memtrack_type>(type),
58 ret = mModule->getMemory(mModule, pid
    [all...]
Memtrack.h 46 const memtrack_module_t* mModule;
  /hardware/interfaces/graphics/mapper/2.0/utils/passthrough/include/mapper-passthrough/2.0/
Gralloc0Hal.h 46 mModule = reinterpret_cast<const gralloc_module_t*>(module);
83 if (mModule->registerBuffer(mModule, bufferHandle)) {
95 if (mModule->unregisterBuffer(mModule, bufferHandle)) {
109 if (mMinor >= 3 && mModule->lockAsync) {
110 result = mModule->lockAsync(mModule, bufferHandle, cpuUsage, accessRegion.left,
117 mModule->lock(mModule, bufferHandle, cpuUsage, accessRegion.left, accessRegion.top
    [all...]
  /hardware/interfaces/thermal/1.0/default/
Thermal.cpp 45 Thermal::Thermal(thermal_module_t* module) : mModule(module) {}
53 if (!mModule || !mModule->getTemperatures) {
59 ssize_t size = mModule->getTemperatures(mModule, nullptr, 0);
63 size = mModule->getTemperatures(mModule, list.data(), list.size());
109 if (!mModule || !mModule->getCpuUsages) {
115 ssize_t size = mModule->getCpuUsages(mModule, nullptr)
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
ModuleDefinitionTest.java 76 private ModuleDefinition mModule;
169 mModule =
177 mModule.getModuleInvocationContext().addAllocatedDevice(DEFAULT_DEVICE_NAME, mMockDevice);
178 mModule.getModuleInvocationContext()
218 mModule.setBuild(mMockBuildInfo);
219 mModule.setDevice(mMockDevice);
234 mModule.run(mMockListener);
244 mModule.setBuild(mMockBuildInfo);
245 mModule.setDevice(mMockDevice);
256 mModule.run(mMockListener)
    [all...]
ModuleDefinitionMultiTest.java 49 private ModuleDefinition mModule;
115 mModule =
123 mModule.getModuleInvocationContext().addAllocatedDevice(DEVICE_NAME_1, mDevice1);
124 mModule.getModuleInvocationContext().addDeviceBuildInfo(DEVICE_NAME_1, mBuildInfo1);
125 mModule.getModuleInvocationContext().addAllocatedDevice(DEVICE_NAME_2, mDevice2);
126 mModule.getModuleInvocationContext().addDeviceBuildInfo(DEVICE_NAME_2, mBuildInfo2);
136 mModule.run(mListener);
TestSuiteStub.java 50 private String mModule;
81 listener.testRunStarted(mModule, 3);
124 mModule + "-file",
140 listener.testRunStarted(mModule, 3);
147 listener.testRunStarted(mModule, mShardedTestToRun.size() + 1);
149 listener.testRunStarted(mModule, mShardedTestToRun.size());
  /hardware/interfaces/graphics/allocator/2.0/utils/gralloc1-adapter/
Gralloc1On0Adapter.cpp 46 mModule(reinterpret_cast<const gralloc_module_t*>(module)),
52 mModule->perform(mModule,
64 int error = ::gralloc_open(&(mModule->common), &mDevice);
266 mModule->perform(mModule, GRALLOC1_ADAPTER_PERFORM_SET_USAGES,
272 mModule->perform(mModule, GRALLOC1_ADAPTER_PERFORM_GET_BACKING_STORE,
275 mModule->perform(mModule, GRALLOC1_ADAPTER_PERFORM_GET_NUM_FLEX_PLANES
    [all...]
  /hardware/interfaces/camera/common/1.0/default/
CameraModule.cpp 243 mModule = module;
262 mModule->init != NULL) {
264 res = mModule->init();
280 int apiVersion = mModule->common.module_api_version;
284 ret = mModule->get_camera_info(cameraId, info);
297 int ret = mModule->get_camera_info(cameraId, &rawInfo);
342 res = filterOpenErrorCode(mModule->common.methods->open(&mModule->common, id, device));
351 return mModule->open_legacy != NULL;
358 res = mModule->open_legacy(&mModule->common, id, halVersion, device)
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Source.h 38 llvm::Module *mModule;
42 // If true, destructor won't destroy the mModule.
45 // Keep track of whether mModule is destroyed (possibly as a consequence of
90 { return *mModule; }
92 { return *mModule; }
104 // Extract metadata from mModule using MetadataExtractor.
108 // Mark mModule was destroyed in the process of linking with a different
  /frameworks/compile/libbcc/lib/
Source.cpp 98 if (!mNoDelete && (mModule != pModule)) delete mModule;
99 mModule = pModule;
199 : mName(name), mContext(pContext), mModule(&pModule), mMetadata(nullptr),
207 delete mModule;
213 if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
225 return mModule->getModuleIdentifier();
232 mModule->getOrInsertNamedMetadata("#rs_build_checksum");
237 return mModule->getNamedMetadata("llvm.dbg.cu") != nullptr;
241 mMetadata = new bcinfo::MetadataExtractor(mModule);
    [all...]
  /hardware/interfaces/camera/provider/2.4/default/
CameraProvider.cpp 81 int deviceVersion = mModule->getDeviceVersion(camera_id);
89 mModule->isOpenLegacyDefined()) {
92 int ret = mModule->openLegacy(cameraId, CAMERA_DEVICE_API_VERSION_1_0, &halDev);
117 int deviceVersion = mModule->getDeviceVersion(camera_id);
123 mModule->isOpenLegacyDefined() && mOpenLegacySupported[cameraIdStr]) {
132 mModule->removeCamera(camera_id);
278 mModule = new CameraModule(rawModule);
279 err = mModule->init();
282 mModule.clear();
285 ALOGI("Loaded \"%s\" camera module", mModule->getModuleName())
    [all...]
  /frameworks/rs/rsov/compiler/spirit/
transformer.h 47 Module *getModule() const { return mModule; }
77 Module *mModule;
transformer.cpp 30 mModule = m;
  /hardware/interfaces/camera/device/3.2/default/
CameraDevice.cpp 37 mModule(module),
46 } else if (mCameraIdInt >= mModule->getNumberOfCameras()) {
50 mDeviceVersion = mModule->getDeviceVersion(mCameraIdInt);
113 if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_4) {
114 int ret = mModule->getCameraInfo(mCameraIdInt, &info);
150 int ret = mModule->getCameraInfo(mCameraIdInt, &info);
163 if (!mModule->isSetTorchModeSupported()) {
170 status = getHidlStatus(mModule->setTorchMode(mCameraId.c_str(), enable));
210 res = mModule->open(mCameraId.c_str(),
235 res = mModule->getCameraInfo(mCameraIdInt, &info)
    [all...]
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 181 : mModule(nullptr), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
198 : mModule(module), mBitcode(nullptr), mBitcodeSize(0),
476 mModule->getFunction(llvm::StringRef(TmpNameList[i]));
544 mModule->getFunction(llvm::StringRef(TmpReduceList[i].mAccumulatorName));
600 if (!(mBitcode && mBitcodeSize) && !mModule) {
608 if (!mModule) {
623 mModule = errval.get().release();
628 mModule->getNamedMetadata(ExportVarMetadataName);
630 mModule->getNamedMetadata(ExportFuncMetadataName);
632 mModule->getNamedMetadata(ExportForEachNameMetadataName)
    [all...]
  /frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
SoundTriggerHelper.java 83 private SoundTriggerModule mModule;
123 mModule = null;
246 if (mModule == null) {
247 mModule = SoundTrigger.attachModule(mModuleProperties.id, this, null);
248 if (mModule == null) {
310 int status = mModule.loadSoundModel(soundModel, handle);
418 if (mModuleProperties == null || mModule == null) {
480 status = mModule.unloadSoundModel(modelData.getHandle());
500 if (mModule == null || modelData == null || modelData.getHandle() == INVALID_VALUE ||
513 status = mModule.unloadSoundModel(modelData.getHandle())
    [all...]
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
ModuleListener.java 39 private IModuleDef mModule;
47 mModule = module;
66 mListener.testRunStarted(mModule.getId(), numTests);

Completed in 804 milliseconds

1 2 3