| /hardware/interfaces/audio/aidl/default/ | 
| D | main.cpp | 33 using aidl::android::hardware::audio::core::Module;56     auto createModule = [](Module::Type type) {  in main()
 57         auto module = Module::createInstance(type);  in main()
 60         moduleName << Module::descriptor << "/" << type;  in main()
 67     auto modules = {createModule(Module::Type::DEFAULT), createModule(Module::Type::R_SUBMIX),  in main()
 68                     createModule(Module::Type::USB), createModule(Module::Type::STUB),  in main()
 69                     createModule(Module::Type::BLUETOOTH)};  in main()
 
 | 
| D | Module.cpp | 111 std::shared_ptr<Module> Module::createInstance(Type type) {  in createInstance()126 std::ostream& operator<<(std::ostream& os, Module::Type t) {  in operator <<()
 128         case Module::Type::DEFAULT:  in operator <<()
 131         case Module::Type::R_SUBMIX:  in operator <<()
 134         case Module::Type::STUB:  in operator <<()
 137         case Module::Type::USB:  in operator <<()
 140         case Module::Type::BLUETOOTH:  in operator <<()
 147 void Module::cleanUpPatch(int32_t patchId) {  in cleanUpPatch()
 151 ndk::ScopedAStatus Module::createStreamContext(  in createStreamContext()
 211 std::vector<AudioDevice> Module::findConnectedDevices(int32_t portConfigId) {  in findConnectedDevices()
 [all …]
 
 | 
| D | Android.bp | 75         "Module.cpp",
 | 
| D | Stream.cpp | 310     int32_t latency = Module::kLatencyMs;  in read()576     int32_t latency = Module::kLatencyMs;  in write()
 
 | 
| /hardware/interfaces/audio/aidl/default/include/core-impl/ | 
| D | ModuleAlsa.h | 28 class ModuleAlsa : public Module {30     explicit ModuleAlsa(Module::Type type) : Module(type) {}  in ModuleAlsa()
 
 | 
| D | ModulePrimary.h | 23 class ModulePrimary final : public Module {25     ModulePrimary() : Module(Type::DEFAULT) {}  in ModulePrimary()
 
 | 
| D | ModuleStub.h | 23 class ModuleStub final : public Module {25     ModuleStub() : Module(Type::STUB) {}  in ModuleStub()
 
 | 
| D | ModuleBluetooth.h | 24 class ModuleBluetooth final : public Module {26     ModuleBluetooth() : Module(Type::BLUETOOTH) {}  in ModuleBluetooth()
 
 | 
| D | ModuleRemoteSubmix.h | 23 class ModuleRemoteSubmix : public Module {25     ModuleRemoteSubmix() : Module(Type::R_SUBMIX) {}  in ModuleRemoteSubmix()
 
 | 
| D | StreamBluetooth.h | 35                     Module::BtProfileHandles&& btHandles);83             Module::BtProfileHandles&& btHandles);
 100             Module::BtProfileHandles&& btHandles);
 
 | 
| D | Module.h | 32 class Module : public BnModule {39     static std::shared_ptr<Module> createInstance(Type type);
 41     explicit Module(Type type) : mType(type) {}  in Module()  function
 222 std::ostream& operator<<(std::ostream& os, Module::Type t);
 
 | 
| /hardware/interfaces/audio/core/all-versions/vts/functional/7.0/ | 
| D | PolicyConfig.h | 39 using Module = Modules::Module;  variable54     const xsd::Module* getModuleFromName(const std::string& name) const;
 55     const xsd::Module* getPrimaryModule() const { return mPrimaryModule; }  in getPrimaryModule()
 104     const xsd::Module* mPrimaryModule;
 
 | 
| D | PolicyConfig.cpp | 39 using Module = Modules::Module;  typedef51 const xsd::Module* PolicyConfig::getModuleFromName(const std::string& name) const {  in getModuleFromName()
 
 | 
| /hardware/broadcom/wlan/ | 
| D | .gitignore | 34 Module.markers35 Module.symvers
 
 | 
| /hardware/interfaces/compatibility_matrices/build/ | 
| D | vintf_compatibility_matrix.go | 83 func vintfCompatibilityMatrixFactory() android.Module {94 	ctx.AddDependency(ctx.Module(), kernelConfigTag, g.properties.Kernel_configs...)
 95 	ctx.AddDependency(ctx.Module(), schemaTag, schemaModuleName)
 152 	ctx.VisitDirectDepsWithTag(kernelConfigTag, func(m android.Module) {
 
 | 
| /hardware/qcom/sm8150/display/ | 
| D | display_defaults.go | 14 func display_DefaultsFactory() android.Module {
 | 
| /hardware/qcom/sm7250/display/ | 
| D | display_defaults.go | 14 func display_DefaultsFactory() android.Module {
 | 
| /hardware/interfaces/audio/aidl/default/bluetooth/ | 
| D | StreamBluetooth.cpp | 57                                  Module::BtProfileHandles&& btHandles)  in StreamBluetooth()64       mBluetoothA2dp(std::move(std::get<Module::BtInterface::BTA2DP>(btHandles))),  in StreamBluetooth()
 65       mBluetoothLe(std::move(std::get<Module::BtInterface::BTLE>(btHandles))) {  in StreamBluetooth()
 321                                      Module::BtProfileHandles&& btProfileHandles)  in StreamInBluetooth()
 334                                        Module::BtProfileHandles&& btProfileHandles)  in StreamOutBluetooth()
 
 | 
| D | ModuleBluetooth.cpp | 54 Module::BtProfileHandles ModuleBluetooth::getBtProfileManagerHandles() {  in getBtProfileManagerHandles()
 | 
| /hardware/interfaces/audio/aidl/default/stub/ | 
| D | StreamStub.cpp | 120     *latencyMs = Module::kLatencyMs;  in transfer()
 | 
| /hardware/interfaces/broadcastradio/2.0/ | 
| D | IBroadcastRadio.hal | 33      * @return properties Module description.
 | 
| /hardware/interfaces/audio/4.0/config/api/ | 
| D | current.txt | 278     method public java.util.List<audio.policy.configuration.V4_0.Modules.Module> getModule();281   public static class Modules.Module {
 282     ctor public Modules.Module();
 
 | 
| /hardware/interfaces/audio/6.0/config/api/ | 
| D | current.txt | 308     method public java.util.List<audio.policy.configuration.V6_0.Modules.Module> getModule();311   public static class Modules.Module {
 312     ctor public Modules.Module();
 
 | 
| /hardware/interfaces/audio/5.0/config/api/ | 
| D | current.txt | 298     method public java.util.List<audio.policy.configuration.V5_0.Modules.Module> getModule();301   public static class Modules.Module {
 302     ctor public Modules.Module();
 
 | 
| /hardware/interfaces/audio/7.1/config/api/ | 
| D | current.txt | 490 …method @Nullable public java.util.List<android.audio.policy.configuration.V7_1.Modules.Module> get…493   public static class Modules.Module {
 494     ctor public Modules.Module();
 
 |