Searched refs:mModule (Results 1 - 16 of 16) sorted by relevance

/frameworks/compile/libbcc/include/bcc/
H A DSource.h38 llvm::Module *mModule; member in class:bcc::Source
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/
H A DSource.cpp98 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...]
/frameworks/rs/rsov/compiler/spirit/
H A Dtransformer.h47 Module *getModule() const { return mModule; }
77 Module *mModule; member in class:android::spirit::Transformer
H A Dtransformer.cpp30 mModule = m;
/frameworks/compile/libbcc/bcinfo/
H A DMetadataExtractor.cpp181 : 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
[all...]
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
H A DSoundTriggerHelper.java83 private SoundTriggerModule mModule; field in class:SoundTriggerHelper
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
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPort.cpp34 mModule = module;
45 return mModule != 0 ? mModule->getHandle() : AUDIO_MODULE_HANDLE_NONE;
50 return mModule != 0 ? mModule->getHalVersionMajor() : 0;
55 return mModule != 0 ? mModule->getName() : "invalid module";
H A DDeviceDescriptor.cpp248 // ALOG_ASSERT(mModule != NULL);
250 mModule != 0 ? mModule->getHandle() : AUDIO_MODULE_HANDLE_NONE;
261 port->ext.device.hw_module = mModule->getHandle();
H A DAudioOutputDescriptor.cpp653 && (primaryOutput->mProfile->mModule != NULL)) {
654 sp<HwModule> primaryHwModule = primaryOutput->mProfile->mModule;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPort.h68 bool isAttached() { return mModule != 0; }
139 sp<HwModule> mModule; // audio HW module exposing this I/O stream member in class:android::AudioPort
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.h98 void setModule(wp<Module> module) { mModule = module; }
103 wp<Module> mModule; member in class:android::SoundTriggerHwService::CallbackEvent
189 wp<Module> mModule; member in class:android::SoundTriggerHwService::ModuleClient
H A DSoundTriggerHwService.cpp370 module = event->mModule.promote();
917 : mModule(module), mClient(client)
954 sp<Module> module = mModule.promote();
970 sp<Module> module = mModule.promote();
985 sp<Module> module = mModule.promote();
1001 sp<Module> module = mModule.promote();
1016 sp<Module> module = mModule.promote();
1029 sp<Module> module = mModule.promote();
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DTunerSession.java43 private final RadioModule mModule; field in class:TunerSession
54 mModule = Objects.requireNonNull(module);
156 return mModule.getImage(id);
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/tests/functional/
H A DRadioTunerTest.java75 private RadioManager.ModuleProperties mModule; field in class:RadioTunerTest
135 mModule = mModules.get(0);
137 for (RadioManager.BandDescriptor band : mModule.getBands()) {
152 mRadioTuner = mRadioManager.openTuner(mModule.getId(),
352 boolean isSupported = mModule.isBackgroundScanningSupported();
/frameworks/compile/libbcc/bcinfo/include/bcinfo/
H A DMetadataExtractor.h86 const llvm::Module *mModule; member in class:bcinfo::MetadataExtractor
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp3051 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
3411 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3412 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
3413 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&

Completed in 404 milliseconds