Home
last modified time | relevance | path

Searched refs:InputTypesMap_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/src/
H A Ddistributed_input_source_manager.cpp190 InputTypesMap_.clear(); in Release()
1525 auto key = InputTypesMap_.find(deviceId); in GetInputTypesMap()
1526 if (key != InputTypesMap_.end()) { in GetInputTypesMap()
1527 return InputTypesMap_[deviceId]; in GetInputTypesMap()
1535 for (auto iter = InputTypesMap_.begin(); iter != InputTypesMap_.end(); ++iter) { in GetAllInputTypesMap()
1553 auto key = InputTypesMap_.find(deviceId); in SetInputTypesMap()
1554 if (key != InputTypesMap_.end()) { in SetInputTypesMap()
1555 InputTypesMap_.erase(key); in SetInputTypesMap()
1559 InputTypesMap_[deviceId] = value; in SetInputTypesMap()
/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/test/sourcemanagerunittest/
H A Ddistributed_input_sourcemanager_test.cpp1630 sourceManager_->InputTypesMap_[devId] = 1;
1638 sourceManager_->InputTypesMap_[devId] = 1;
1647 sourceManager_->InputTypesMap_[devId] = 1;
1649 EXPECT_EQ(true, sourceManager_->InputTypesMap_.empty());
/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/include/
H A Ddistributed_input_source_manager.h450 std::map<std::string, uint32_t> InputTypesMap_; variable