Home
last modified time | relevance | path

Searched refs:host_it (Results 1 – 25 of 25) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/appcache/
H A Dappcache_fuzzer.cc179 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
182 registered_hosts.erase(host_it); in DEFINE_BINARY_PROTO_FUZZER()
188 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
201 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
214 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
224 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
229 host_it->second->MarkAsForeignEntry(url, in DEFINE_BINARY_PROTO_FUZZER()
236 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
244 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
252 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/appcache/
H A Dappcache_fuzzer.cc178 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
181 registered_hosts.erase(host_it); in DEFINE_BINARY_PROTO_FUZZER()
187 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
200 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
213 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
223 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
228 host_it->second->MarkAsForeignEntry(url, in DEFINE_BINARY_PROTO_FUZZER()
235 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
243 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
251 if (host_it == registered_hosts.end()) in DEFINE_BINARY_PROTO_FUZZER()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/extensions/browser/guest_view/web_view/
H A Dweb_view_content_script_manager.cc108 auto host_it = webview_host_id_map_.find(key); in AddContentScripts() local
109 if (host_it == webview_host_id_map_.end()) in AddContentScripts()
126 auto host_it = webview_host_id_map_.find(key); in RemoveAllContentScriptsForWebView() local
128 if (host_it == webview_host_id_map_.end()) in RemoveAllContentScriptsForWebView()
132 RemoveContentScripts(embedder_process_id, view_instance_id, host_it->second, in RemoveAllContentScriptsForWebView()
134 webview_host_id_map_.erase(host_it); in RemoveAllContentScriptsForWebView()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/extensions/browser/guest_view/web_view/
H A Dweb_view_content_script_manager.cc108 auto host_it = webview_host_id_map_.find(key); in AddContentScripts() local
109 if (host_it == webview_host_id_map_.end()) in AddContentScripts()
126 auto host_it = webview_host_id_map_.find(key); in RemoveAllContentScriptsForWebView() local
128 if (host_it == webview_host_id_map_.end()) in RemoveAllContentScriptsForWebView()
132 RemoveContentScripts(embedder_process_id, view_instance_id, host_it->second, in RemoveAllContentScriptsForWebView()
134 webview_host_id_map_.erase(host_it); in RemoveAllContentScriptsForWebView()
/dports/games/bzflag-server/bzflag-2.4.22/src/bzflag/
H A DDownloads.cxx366 std::map<std::string, bool>::iterator host_it; in checkAuthorizations() local
378 for (host_it = hostAccess.begin(); host_it != hostAccess.end(); ++host_it) in checkAuthorizations()
380 const std::string& host = host_it->first; in checkAuthorizations()
381 host_it->second = authorizedServer(host); in checkAuthorizations()
/dports/devel/google-cloud-cpp117/google-cloud-cpp-1.17.0/google/cloud/storage/internal/
H A Dsigned_url_requests.cc216 auto host_it = headers.find("host"); in Validate() local
217 if (host_it == headers.end()) { in Validate()
220 if (virtual_host_name_ && host_it->second != Hostname()) { in Validate()
222 "specified 'host' (" + host_it->second + in Validate()
226 if (domain_named_bucket_ && host_it->second != *domain_named_bucket_) { in Validate()
228 "specified 'host' (" + host_it->second + in Validate()
/dports/games/bzflag/bzflag-2.4.22/src/bzflag/
H A DDownloads.cxx366 std::map<std::string, bool>::iterator host_it; in checkAuthorizations() local
378 for (host_it = hostAccess.begin(); host_it != hostAccess.end(); ++host_it) in checkAuthorizations()
380 const std::string& host = host_it->first; in checkAuthorizations()
381 host_it->second = authorizedServer(host); in checkAuthorizations()
/dports/devel/google-cloud-cpp/google-cloud-cpp-1.21.0/google/cloud/storage/internal/
H A Dsigned_url_requests.cc210 auto host_it = headers.find("host"); in Validate() local
211 if (host_it == headers.end()) { in Validate()
214 if (virtual_host_name_ && host_it->second != Hostname()) { in Validate()
216 "specified 'host' (" + host_it->second + in Validate()
220 if (domain_named_bucket_ && host_it->second != *domain_named_bucket_) { in Validate()
222 "specified 'host' (" + host_it->second + in Validate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/storage/browser/quota/
H A Dclient_usage_tracker.cc196 auto host_it = cached_usage_by_host_.find(host); in SetUsageCacheEnabled() local
197 if (host_it != cached_usage_by_host_.end()) { in SetUsageCacheEnabled()
198 UsageMap& cached_usage_for_host = host_it->second; in SetUsageCacheEnabled()
206 cached_usage_by_host_.erase(host_it); in SetUsageCacheEnabled()
390 auto host_it = cached_usage_by_host_.find(host); in GetCachedOriginUsage() local
391 if (host_it == cached_usage_by_host_.end()) in GetCachedOriginUsage()
394 auto origin_it = host_it->second.find(origin); in GetCachedOriginUsage()
395 if (origin_it == host_it->second.end()) in GetCachedOriginUsage()
/dports/net/radsecproxy/radsecproxy-1.8.2/tools/
H A Dradsec-dynsrv.sh30 host_it() { function
41 SERVERS=$(host_it)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/storage/browser/quota/
H A Dusage_tracker.cc314 auto host_it = host_usage_callbacks_.find(host); in FinallySendHostUsageWithBreakdown() local
315 if (host_it == host_usage_callbacks_.end()) in FinallySendHostUsageWithBreakdown()
319 pending_callbacks.swap(host_it->second); in FinallySendHostUsageWithBreakdown()
322 host_usage_callbacks_.erase(host_it); in FinallySendHostUsageWithBreakdown()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/url_request/
H A Durl_request_filter.cc61 HostnameInterceptorMap::const_iterator host_it = in AddHostnameInterceptor() local
63 if (host_it != hostname_interceptor_map_.end()) in AddHostnameInterceptor()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/url_request/
H A Durl_request_filter.cc61 HostnameInterceptorMap::const_iterator host_it = in AddHostnameInterceptor() local
63 if (host_it != hostname_interceptor_map_.end()) in AddHostnameInterceptor()
/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/src/
H A Dcluster_connector.cpp208 HostMap::const_iterator host_it = hosts.find(connector->address()); in on_connect() local
209 if (host_it == hosts.end()) { in on_connect()
219 Host::Ptr connected_host(host_it->second); in on_connect()
H A Dtoken_map_impl.hpp771 for (HostVec::const_iterator host_it = hosts->begin(), end = hosts->end(); host_it != end; in dump() local
772 ++host_it) { in dump()
773 ss << (*host_it)->address_string() << " "; in dump()
H A Dcluster.cpp575 LockedHostMap::const_iterator host_it = hosts_.find(host->address()); in notify_host_add() local
577 if (host_it != hosts_.end()) { in notify_host_add()
584 (*it)->on_host_removed(host_it->second); in notify_host_add()
/dports/games/warmux/warmux-11.04/src/network/
H A Dnetwork.cpp287 void Network::RemoveRemoteHost(std::list<DistantComputer*>::iterator host_it) in RemoveRemoteHost() argument
292 DistantComputer *host = *host_it; in RemoveRemoteHost()
293 cpu.erase(host_it); in RemoveRemoteHost()
H A Dnetwork.h139 void RemoveRemoteHost(std::list<DistantComputer*>::iterator host_it);
/dports/net/kea/kea-2.0.1/src/lib/dhcpsrv/
H A Dcfg_hosts.cc903 for (HostCollection::const_iterator host_it = hosts.begin(); in getHostInternal() local
904 host_it != hosts.end(); ++host_it) { in getHostInternal()
906 SubnetID host_subnet_id = subnet6 ? (*host_it)->getIPv6SubnetID() : in getHostInternal()
907 (*host_it)->getIPv4SubnetID(); in getHostInternal()
918 host = *host_it; in getHostInternal()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/supervised_user/
H A Dsupervised_user_url_filter.cc455 auto host_it = host_map_.find(host); in GetManualFilteringBehaviorForURL() local
456 if (host_it != host_map_.end()) { in GetManualFilteringBehaviorForURL()
457 if (!host_it->second) in GetManualFilteringBehaviorForURL()
/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/tests/src/unit/tests/
H A Dtest_load_balancing.cpp99 HostMap::const_iterator host_it = hosts.find(it->first); in verify_dcs() local
100 ASSERT_NE(host_it, hosts.end()); in verify_dcs()
101 EXPECT_EQ(expected_dc, host_it->second->dc()); in verify_dcs()
/dports/graphics/blender/blender-2.91.0/extern/quadriflow/3rd/lemon-1.3.1/lemon/
H A Dlp_base.h901 ExprIterator(const std::map<int, Value>::const_iterator& host_it, in ExprIterator() argument
903 : _host_it(host_it), _index(index) {} in ExprIterator()
/dports/math/lemon/lemon-1.3.1/lemon/
H A Dlp_base.h901 ExprIterator(const std::map<int, Value>::const_iterator& host_it, in ExprIterator() argument
903 : _host_it(host_it), _index(index) {} in ExprIterator()
/dports/misc/openmvg/openMVG-2.0/src/third_party/lemon/lemon/
H A Dlp_base.h901 ExprIterator(const std::map<int, Value>::const_iterator& host_it, in ExprIterator() argument
903 : _host_it(host_it), _index(index) {} in ExprIterator()
/dports/games/freeorion/freeorion-0.4.10.2/server/
H A DServerFSM.cpp65 auto host_it = networking.GetPlayer(networking.HostPlayerID()); in SendMessageToHost() local
66 if (host_it == networking.established_end()) { in SendMessageToHost()
71 PlayerConnectionPtr host = *host_it; in SendMessageToHost()