Home
last modified time | relevance | path

Searched refs:comHandler (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/componentloader/src/
H A Dcomponent_loader_test.cpp95 CompHandler comHandler; variable
96 comHandler.hardwareHandler = nullptr;
97 ComponentLoader::GetInstance().compHandlerMap_[DHType::AUDIO] = comHandler;
115 CompHandler comHandler; variable
116 comHandler.sourceHandler = nullptr;
117 ComponentLoader::GetInstance().compHandlerMap_[DHType::AUDIO] = comHandler;
134 CompHandler comHandler; variable
135 comHandler.sinkHandler = nullptr;
225 CompHandler comHandler; variable
240 CompHandler comHandler; variable
[all …]
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/componentloader/
H A Dcomponent_loader.cpp391 CompHandler comHandler; in GetAllHandler() local
392 comHandler.type = itor->second.type; in GetAllHandler()
393 comHandler.hardwareHandler = GetHandler(itor->second.compHandlerLoc); in GetAllHandler()
394 comHandler.sourceHandler = GetHandler(itor->second.compSourceLoc); in GetAllHandler()
395 comHandler.sourceSaId = itor->second.compSourceSaId; in GetAllHandler()
396 comHandler.sinkHandler = GetHandler(itor->second.compSinkLoc); in GetAllHandler()
397 comHandler.sinkSaId = itor->second.compSinkSaId; in GetAllHandler()
402 comHandler.resourceDesc = itor->second.compResourceDesc; in GetAllHandler()
403 compHandlerMap_[itor->second.type] = comHandler; in GetAllHandler()