Home
last modified time | relevance | path

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

/external/openscreen/platform/impl/
Dsocket_handle_waiter.cc21 if (handle_mappings_.find(handle) == handle_mappings_.end()) { in Subscribe()
22 handle_mappings_.emplace(handle, SocketSubscription{subscriber}); in Subscribe()
29 auto iterator = handle_mappings_.find(handle); in Unsubscribe()
30 if (handle_mappings_.find(handle) != handle_mappings_.end()) { in Unsubscribe()
31 handle_mappings_.erase(iterator); in Unsubscribe()
37 for (auto it = handle_mappings_.begin(); it != handle_mappings_.end();) { in UnsubscribeAll()
39 it = handle_mappings_.erase(it); in UnsubscribeAll()
50 auto it = handle_mappings_.find(handle); in OnHandleDeletion()
51 if (it != handle_mappings_.end()) { in OnHandleDeletion()
52 handle_mappings_.erase(it); in OnHandleDeletion()
[all …]
Dsocket_handle_waiter.h115 handle_mappings_; variable