Home
last modified time | relevance | path

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

/ohos5.0/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessibility_window_connection.cpp28 cardProxy_[0] = connection; in AccessibilityWindowConnection()
36 cardProxy_[treeId] = connection; in AccessibilityWindowConnection()
51 cardProxy_[treeId] = operation; in SetCardProxy()
57 auto iter = cardProxy_.find(treeId); in GetCardProxy()
58 if (iter != cardProxy_.end()) { in GetCardProxy()
60 return cardProxy_[treeId]; in GetCardProxy()
82 for (auto &treeId: cardProxy_) { in GetAllTreeId()
105 cardProxy_.erase(treeId); in EraseProxy()
/ohos5.0/foundation/barrierfree/accessibility/services/aams/test/mock/src/
H A Dmock_accessibility_window_connection.cpp47 cardProxy_[treeId] = operation; in SetCardProxy()
53 auto iter = cardProxy_.find(treeId); in GetCardProxy()
54 if (iter != cardProxy_.end()) { in GetCardProxy()
56 return cardProxy_[treeId]; in GetCardProxy()
78 for (auto &treeId: cardProxy_) { in GetAllTreeId()
101 auto iter = cardProxy_.find(treeId); in EraseProxy()
102 if (iter != cardProxy_.end()) { in EraseProxy()
103 cardProxy_.erase(iter); in EraseProxy()
/ohos5.0/foundation/barrierfree/accessibility/services/aams/include/
H A Daccessibility_window_connection.h57 std::map<int32_t, sptr<IAccessibilityElementOperator>> cardProxy_; variable