Searched refs:maxConnections (Results 1 - 4 of 4) sorted by relevance

/haiku/headers/private/netservices2/
H A DHttpSession.h45 void SetMaxConnectionsPerHost(size_t maxConnections);
46 void SetMaxHosts(size_t maxConnections);
/haiku/src/kits/network/libnetservices2/
H A DHttpSession.cpp132 void SetMaxConnectionsPerHost(size_t maxConnections);
133 void SetMaxHosts(size_t maxConnections);
256 BHttpSession::Impl::SetMaxConnectionsPerHost(size_t maxConnections) argument
258 if (maxConnections <= 0 || maxConnections >= INT32_MAX) {
262 fMaxConnectionsPerHost.store(maxConnections, std::memory_order_relaxed);
267 BHttpSession::Impl::SetMaxHosts(size_t maxConnections) argument
269 if (maxConnections <= 0)
271 fMaxHosts.store(maxConnections, std::memory_order_relaxed);
641 BHttpSession::SetMaxConnectionsPerHost(size_t maxConnections) argument
648 SetMaxHosts(size_t maxConnections) argument
[all...]
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.h257 int32 maxConnections,
263 int32 maxConnections,
H A DNodeRef.cpp413 int32 maxConnections,
424 for(; it != itEnd && count < maxConnections; ++it) {
439 int32 maxConnections,
450 for(; it != itEnd && count < maxConnections; ++it) {
411 getInputConnections( Connection* outConnections, int32 maxConnections, int32* outNumConnections, media_type filterType) const argument
437 getOutputConnections( Connection* outConnections, int32 maxConnections, int32* outNumConnections, media_type filterType) const argument

Completed in 170 milliseconds