Lines Matching defs:module
762 // module and has a current device selection that differs from selected device.
945 ALOGE("getInput(): HW module %s not opened", profile->mModule->mName);
1406 snprintf(buffer, SIZE, "- HW Module %d:\n", i + 1);
1562 ALOGW("could not open HW module %s", mHwModules[i]->mName);
1844 ALOGV("checkOutputsForDevice(): adding profile %d from module %d", j, i);
2001 ALOGV("checkOutputsForDevice(): clearing direct output profile %d on module %d",
3538 AudioPolicyManagerBase::IOProfile::IOProfile(HwModule *module)
3539 : mFlags((audio_output_flags_t)0), mModule(module)
3857 status_t AudioPolicyManagerBase::loadInput(cnode *root, HwModule *module)
3861 IOProfile *profile = new IOProfile(module);
3890 module->mInputProfiles.add(profile);
3898 status_t AudioPolicyManagerBase::loadOutput(cnode *root, HwModule *module)
3902 IOProfile *profile = new IOProfile(module);
3934 module->mOutputProfiles.add(profile);
3947 HwModule *module = new HwModule(root->name);
3961 status_t tmpStatus = loadOutput(node, module);
3973 status_t tmpStatus = loadInput(node, module);
3981 mHwModules.add(module);
3983 delete module;
3996 ALOGV("loadHwModules() loading module %s", node->name);
4059 HwModule *module;
4066 module = new HwModule("primary");
4068 profile = new IOProfile(module);
4074 module->mOutputProfiles.add(profile);
4076 profile = new IOProfile(module);
4081 module->mInputProfiles.add(profile);
4083 mHwModules.add(module);