Lines Matching defs:module
711 // module and has a current device selection that differs from selected device.
888 ALOGE("getInput(): HW module %s not opened", profile->mModule->mName);
1271 snprintf(buffer, SIZE, "- HW Module %d:\n", i + 1);
1358 ALOGW("could not open HW module %s", mHwModules[i]->mName);
1637 ALOGV("checkOutputsForDevice(): adding profile %d from module %d", j, i);
1788 ALOGV("checkOutputsForDevice(): clearing direct output profile %d on module %d",
3317 AudioPolicyManagerBase::IOProfile::IOProfile(HwModule *module)
3318 : mFlags((audio_output_flags_t)0), mModule(module)
3625 status_t AudioPolicyManagerBase::loadInput(cnode *root, HwModule *module)
3629 IOProfile *profile = new IOProfile(module);
3658 module->mInputProfiles.add(profile);
3666 status_t AudioPolicyManagerBase::loadOutput(cnode *root, HwModule *module)
3670 IOProfile *profile = new IOProfile(module);
3702 module->mOutputProfiles.add(profile);
3715 HwModule *module = new HwModule(root->name);
3729 status_t tmpStatus = loadOutput(node, module);
3741 status_t tmpStatus = loadInput(node, module);
3749 mHwModules.add(module);
3751 delete module;
3764 ALOGV("loadHwModules() loading module %s", node->name);
3824 HwModule *module;
3831 module = new HwModule("primary");
3833 profile = new IOProfile(module);
3839 module->mOutputProfiles.add(profile);
3841 profile = new IOProfile(module);
3846 module->mInputProfiles.add(profile);
3848 mHwModules.add(module);