Searched refs:mModule (Results 1 – 10 of 10) sorted by relevance
/frameworks/compile/libbcc/bcinfo/ |
D | MetadataExtractor.cpp | 181 : mModule(nullptr), mBitcode(bitcode), mBitcodeSize(bitcodeSize), in MetadataExtractor() 198 : mModule(module), mBitcode(nullptr), mBitcodeSize(0), in MetadataExtractor() 474 mModule->getFunction(llvm::StringRef(TmpNameList[i])); in populateForEachMetadata() 547 mModule->getFunction(llvm::StringRef(TmpReduceList[i].mAccumulatorName)); in populateReduceMetadata() 603 if (!(mBitcode && mBitcodeSize) && !mModule) { in extract() 611 if (!mModule) { in extract() 626 mModule = errval.get().release(); in extract() 631 mModule->getNamedMetadata(ExportVarMetadataName); in extract() 633 mModule->getNamedMetadata(ExportFuncMetadataName); in extract() 635 mModule->getNamedMetadata(ExportForEachNameMetadataName); in extract() [all …]
|
/frameworks/compile/libbcc/lib/ |
D | Source.cpp | 98 if (!mNoDelete && (mModule != pModule)) delete mModule; in setModule() 99 mModule = pModule; in setModule() 199 : mName(name), mContext(pContext), mModule(&pModule), mMetadata(nullptr), in Source() 207 delete mModule; in ~Source() 213 …if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0)… in merge() 225 return mModule->getModuleIdentifier(); in getIdentifier() 232 mModule->getOrInsertNamedMetadata("#rs_build_checksum"); in addBuildChecksumMetadata() 237 return mModule->getNamedMetadata("llvm.dbg.cu") != nullptr; in getDebugInfoEnabled() 241 mMetadata = new bcinfo::MetadataExtractor(mModule); in extractMetadata()
|
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/ |
D | SoundTriggerHelper.java | 91 private SoundTriggerModule mModule; field in SoundTriggerHelper 138 mModule = null; in SoundTriggerHelper() 266 if (mModule == null) { in prepareForRecognition() 267 mModule = SoundTrigger.attachModule(mModuleProperties.getId(), this, null); in prepareForRecognition() 268 if (mModule == null) { in prepareForRecognition() 281 int status = mModule.loadSoundModel(modelData.getSoundModel(), handle); in prepareForRecognition() 474 if (mModuleProperties == null || mModule == null) { in stopRecognition() 536 if (mModule == null) { in tryStopAndUnloadLocked() 539 status = mModule.unloadSoundModel(modelData.getHandle()); in tryStopAndUnloadLocked() 559 if (mModule == null || modelData == null || !modelData.isModelLoaded() in unloadKeyphraseSoundModel() [all …]
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | PolicyAudioPort.cpp | 35 mModule = module; in attach() 40 mModule = nullptr; in detach() 51 return mModule != 0 ? mModule->getHandle() : AUDIO_MODULE_HANDLE_NONE; in getModuleHandle() 56 return mModule != 0 ? mModule->getHalVersionMajor() : 0; in getModuleVersionMajor() 61 return mModule != 0 ? mModule->getName() : "invalid module"; in getModuleName()
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | TunerSession.java | 45 private final RadioModule mModule; field in TunerSession 57 mModule = Objects.requireNonNull(module); in TunerSession() 85 mModule.onTunerSessionClosed(this); in close() 106 mModule.fanoutAidlCallback(cb -> cb.onConfigurationChanged(config)); in setConfiguration() 178 return mModule.getImage(id); in getImage() 184 mModule.fanoutAidlCallback(cb -> cb.onBackgroundScanComplete()); in startBackgroundScan() 202 mModule.onTunerSessionProgramListFilterChanged(this); in startProgramListUpdates() 254 mModule.onTunerSessionProgramListFilterChanged(this); in stopProgramListUpdates()
|
/frameworks/compile/libbcc/include/bcc/ |
D | Source.h | 38 llvm::Module *mModule; variable 90 { return *mModule; } in getModule() 92 { return *mModule; } in getModule()
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
D | PolicyAudioPort.h | 62 bool isAttached() { return mModule != 0; } in isAttached() 101 sp<HwModule> getModule() const { return mModule; } in getModule() 128 sp<HwModule> mModule; // audio HW module exposing this I/O stream variable
|
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/tests/functional/ |
D | RadioTunerTest.java | 73 private RadioManager.ModuleProperties mModule; field in RadioTunerTest 132 mModule = mModules.get(0); in openTuner() 134 for (RadioManager.BandDescriptor band : mModule.getBands()) { in openTuner() 149 mRadioTuner = mRadioManager.openTuner(mModule.getId(), in openTuner() 349 boolean isSupported = mModule.isBackgroundScanningSupported(); in testStartBackgroundScan()
|
/frameworks/compile/libbcc/bcinfo/include/bcinfo/ |
D | MetadataExtractor.h | 86 const llvm::Module *mModule;
|
/frameworks/av/media/codec2/vndk/ |
D | C2Store.cpp | 622 std::shared_ptr<ComponentModule> localModule = mModule.lock(); in fetchModule() 627 mModule = localModule; in fetchModule() 642 std::weak_ptr<ComponentModule> mModule; ///< weak reference to the loaded module member
|