Lines Matching refs:it
51 for (typename MapType::const_iterator it = socket_pools.begin(); in AddSocketPoolsToList() local
52 it != socket_pools.end(); it++) { in AddSocketPoolsToList()
53 list->Append(it->second->GetInfoAsValue(it->first.ToString(), in AddSocketPoolsToList()
306 for (SSLSocketPoolMap::const_iterator it = in FlushSocketPools() local
308 it != ssl_socket_pools_for_proxies_.end(); in FlushSocketPools()
309 ++it) in FlushSocketPools()
310 it->second->Flush(); in FlushSocketPools()
312 for (HTTPProxySocketPoolMap::const_iterator it = in FlushSocketPools() local
314 it != http_proxy_socket_pools_.end(); in FlushSocketPools()
315 ++it) in FlushSocketPools()
316 it->second->Flush(); in FlushSocketPools()
318 for (SSLSocketPoolMap::const_iterator it = in FlushSocketPools() local
320 it != ssl_socket_pools_for_https_proxies_.end(); in FlushSocketPools()
321 ++it) in FlushSocketPools()
322 it->second->Flush(); in FlushSocketPools()
324 for (TransportSocketPoolMap::const_iterator it = in FlushSocketPools() local
326 it != transport_socket_pools_for_https_proxies_.end(); in FlushSocketPools()
327 ++it) in FlushSocketPools()
328 it->second->Flush(); in FlushSocketPools()
330 for (TransportSocketPoolMap::const_iterator it = in FlushSocketPools() local
332 it != transport_socket_pools_for_http_proxies_.end(); in FlushSocketPools()
333 ++it) in FlushSocketPools()
334 it->second->Flush(); in FlushSocketPools()
336 for (SOCKSSocketPoolMap::const_iterator it = in FlushSocketPools() local
338 it != socks_socket_pools_.end(); in FlushSocketPools()
339 ++it) in FlushSocketPools()
340 it->second->Flush(); in FlushSocketPools()
342 for (TransportSocketPoolMap::const_iterator it = in FlushSocketPools() local
344 it != transport_socket_pools_for_socks_proxies_.end(); in FlushSocketPools()
345 ++it) in FlushSocketPools()
346 it->second->Flush(); in FlushSocketPools()
355 for (SSLSocketPoolMap::const_iterator it = in CloseIdleSockets() local
357 it != ssl_socket_pools_for_proxies_.end(); in CloseIdleSockets()
358 ++it) in CloseIdleSockets()
359 it->second->CloseIdleSockets(); in CloseIdleSockets()
361 for (HTTPProxySocketPoolMap::const_iterator it = in CloseIdleSockets() local
363 it != http_proxy_socket_pools_.end(); in CloseIdleSockets()
364 ++it) in CloseIdleSockets()
365 it->second->CloseIdleSockets(); in CloseIdleSockets()
367 for (SSLSocketPoolMap::const_iterator it = in CloseIdleSockets() local
369 it != ssl_socket_pools_for_https_proxies_.end(); in CloseIdleSockets()
370 ++it) in CloseIdleSockets()
371 it->second->CloseIdleSockets(); in CloseIdleSockets()
373 for (TransportSocketPoolMap::const_iterator it = in CloseIdleSockets() local
375 it != transport_socket_pools_for_https_proxies_.end(); in CloseIdleSockets()
376 ++it) in CloseIdleSockets()
377 it->second->CloseIdleSockets(); in CloseIdleSockets()
379 for (TransportSocketPoolMap::const_iterator it = in CloseIdleSockets() local
381 it != transport_socket_pools_for_http_proxies_.end(); in CloseIdleSockets()
382 ++it) in CloseIdleSockets()
383 it->second->CloseIdleSockets(); in CloseIdleSockets()
385 for (SOCKSSocketPoolMap::const_iterator it = in CloseIdleSockets() local
387 it != socks_socket_pools_.end(); in CloseIdleSockets()
388 ++it) in CloseIdleSockets()
389 it->second->CloseIdleSockets(); in CloseIdleSockets()
391 for (TransportSocketPoolMap::const_iterator it = in CloseIdleSockets() local
393 it != transport_socket_pools_for_socks_proxies_.end(); in CloseIdleSockets()
394 ++it) in CloseIdleSockets()
395 it->second->CloseIdleSockets(); in CloseIdleSockets()
403 SOCKSSocketPoolMap::const_iterator it = socks_socket_pools_.find(socks_proxy); in GetSocketPoolForSOCKSProxy() local
404 if (it != socks_socket_pools_.end()) { in GetSocketPoolForSOCKSProxy()
406 return it->second; in GetSocketPoolForSOCKSProxy()
437 HTTPProxySocketPoolMap::const_iterator it = in GetSocketPoolForHTTPProxy() local
439 if (it != http_proxy_socket_pools_.end()) { in GetSocketPoolForHTTPProxy()
443 return it->second; in GetSocketPoolForHTTPProxy()
510 SSLSocketPoolMap::const_iterator it = in GetSocketPoolForSSLWithProxy() local
512 if (it != ssl_socket_pools_for_proxies_.end()) in GetSocketPoolForSSLWithProxy()
513 return it->second; in GetSocketPoolForSSLWithProxy()