Home
last modified time | relevance | path

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

/system/bt/stack/btm/
Dbtm_ble_bgconn.cc155 auto map_it = background_connections.find(bd_addr); in btm_ble_bgconn_cancel_if_disconnected() local
156 if (map_it != background_connections.end()) { in btm_ble_bgconn_cancel_if_disconnected()
157 BackgroundConnection* connection = &map_it->second; in btm_ble_bgconn_cancel_if_disconnected()
264 for (auto map_it = background_connections.begin(); in btm_execute_wl_dev_operation() local
265 map_it != background_connections.end();) { in btm_execute_wl_dev_operation()
266 BackgroundConnection* connection = &map_it->second; in btm_execute_wl_dev_operation()
271 map_it = background_connections.erase(map_it); in btm_execute_wl_dev_operation()
273 ++map_it; in btm_execute_wl_dev_operation()
/system/update_engine/payload_generator/
Dinplace_generator.cc710 const auto& map_it = the_map.find(elem); in ApplyMap() local
711 if (map_it != the_map.end()) in ApplyMap()
712 elem = map_it->second; in ApplyMap()