Home
last modified time | relevance | path

Searched refs:m_KeepAlive (Results 1 – 12 of 12) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DHttpListenerResponse.cs31 private bool m_KeepAlive; field in System.Net.HttpListenerResponse
49 m_KeepAlive = true; in HttpListenerResponse()
191 m_KeepAlive = templateResponse.m_KeepAlive; in CopyFrom()
242 return m_KeepAlive;
246 m_KeepAlive = value;
647 …ryType:" + m_BoundaryType + " m_ContentLength:" + m_ContentLength + " m_KeepAlive:" + m_KeepAlive); in ComputeHeaders()
652 m_KeepAlive = false; in ComputeHeaders()
665 …ryType:" + m_BoundaryType + " m_ContentLength:" + m_ContentLength + " m_KeepAlive:" + m_KeepAlive); in ComputeHeaders()
679 m_KeepAlive = false; in ComputeHeaders()
681 if (!m_KeepAlive) { in ComputeHeaders()
[all …]
H A DHttpListenerRequest.cs224 private TriState m_KeepAlive; field in System.Net.HttpListenerRequest
280 m_KeepAlive = TriState.Unspecified; in HttpListenerRequest()
719 if (m_KeepAlive == TriState.Unspecified)
730 m_KeepAlive = TriState.True;
735m_KeepAlive = string.IsNullOrEmpty(header) ? TriState.False : TriState.True;
741m_KeepAlive = header.IndexOf("close") < 0 || header.IndexOf("keep-alive") >= 0 ? TriState.True : T…
745 …tenerRequest#" + ValidationHelper.HashString(this) + "::KeepAlive_get() returning:" + m_KeepAlive);
746 return m_KeepAlive == TriState.True;
H A D_Connection.cs337 private bool m_KeepAlive = true; field in System.Net.Connection
951 m_Free = m_KeepAlive; in CheckNextRequest()
1161 if (!m_KeepAlive || m_Error != WebExceptionStatus.Success || !CanBePooled) { in InternalWriteStartNextRequest()
2111 if (m_KeepAlive) in ProcessHeaderData()
2215 m_KeepAlive = false; in ProcessHeaderData()
2228 return m_KeepAlive;
2284 m_CurrentRequest.ErrorStatusCodeNotify(this, m_KeepAlive, false); in ParseStreamData()
2672 m_KeepAlive = false; in CloseOnIdle()
2724 m_KeepAlive = false; in AbortOrDisassociate()
2733 m_KeepAlive = false; in AbortOrDisassociate()
[all …]
H A DFtpWebRequest.cs205 private bool m_KeepAlive = true; field in System.Net.FtpWebRequest
1732 return m_KeepAlive;
1738 m_KeepAlive = value;
H A DHttpWebRequest.cs52 bool m_KeepAlive = true; field in System.Net.HttpWebRequest
451 return m_KeepAlive;
454 m_KeepAlive = value;
/dports/irc/smuxi/smuxi-1.1/lib/agsxmpp/agsxmpp/
H A DXmppConnection.cs110 private bool m_KeepAlive = true; field in agsXMPP.XmppConnection
236 return m_KeepAlive;
240 m_KeepAlive = value;
390 if (m_KeepAlive && m_KeepaliveTimer != null) in Send()
/dports/irc/smuxi/smuxi-1.1/lib/agsxmpp/agsxmpp/Net/
H A DBoshClientSocket.cs120 private bool m_KeepAlive = true; field in agsXMPP.Net.BoshClientSocket
209 get { return m_KeepAlive; }
210 set { m_KeepAlive = value; }
406 req.KeepAlive = m_KeepAlive; in RequestBoshSession()
702 req.KeepAlive = m_KeepAlive; in StartWebRequest()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/grid/remote_app/
H A Dexec_helpers.cpp630 m_JobContext(p.job_context), m_KeepAlive(p.keep_alive_period), in CJobContextProcessWatcher()
662 if (m_KeepAlive.IsExpired()) { in Watch()
663 m_JobContext.JobDelayExpiration(m_KeepAlive.PresetSeconds() + 10); in Watch()
664 m_KeepAlive.Restart(); in Watch()
674 CTimer m_KeepAlive; member in CJobContextProcessWatcher
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/livestatus/
H A Dlivestatusquery.cpp36 : m_KeepAlive(false), m_OutputFormat("csv"), m_ColumnHeaders(true), m_Limit(-1), m_ErrorCode(0), in LivestatusQuery()
73 m_KeepAlive = true; in LivestatusQuery()
103 m_KeepAlive = (params == "on"); in LivestatusQuery()
642 if (!m_KeepAlive) { in Execute()
H A Dlivestatusquery.hpp43 bool m_KeepAlive; member in icinga::LivestatusQuery
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/base/
H A Dio-engine.cpp87 IoEngine::IoEngine() : m_IoContext(), m_KeepAlive(boost::asio::make_work_guard(m_IoContext)), m_Thr… in IoEngine()
H A Dio-engine.hpp130 boost::asio::executor_work_guard<boost::asio::io_context::executor_type> m_KeepAlive; member in icinga::IoEngine