Home
last modified time | relevance | path

Searched refs:bypassProxy (Results 1 – 18 of 18) sorted by relevance

/dports/www/firefox/firefox-99.0/toolkit/modules/
H A DServiceRequest.jsm134 * @param {Object} options - Additional options { bypassProxy: bool }.
144 if (options?.bypassProxy && this.bypassProxyEnabled) {
145 internal.bypassProxy = true;
150 get bypassProxy() {
152 return channel.QueryInterface(Ci.nsIHttpChannelInternal).bypassProxy;
/dports/www/ilias6/ILIAS-6.14/Modules/CmiXapi/classes/
H A Dclass.ilCmiXapiSettingsGUI.php262 …$bypassProxy = new ilRadioGroupInputGUI($DIC->language()->txt('conf_bypass_proxy'), 'bypass_proxy'…
263 $bypassProxy->setInfo($DIC->language()->txt('conf_bypass_proxy_info'));
264 $bypassProxy->setValue($this->object->isBypassProxyEnabled());
266 $bypassProxy->addOption($opt1);
268 $bypassProxy->addOption($opt2);
269 $form->addItem($bypassProxy);
271 $bypassProxy->setDisabled(true);
/dports/www/firefox/firefox-99.0/services/settings/
H A DUtils.jsm139 // At most one recursive Utils.fetch call (bypassProxy=false to true).
140 bypassProxy ||
150 resolve(Utils.fetch(input, { ...init, bypassProxy: true }));
182 const { method = "GET", headers = {}, bypassProxy = false } = init;
184 request.open(method, input, { bypassProxy });
/dports/irc/konversation/konversation-21.12.3/src/irc/
H A Dserversettings.cpp38 && m_bypassProxy == settings.bypassProxy()) in operator ==()
H A Dserversettings.h39 bool bypassProxy() const { return m_bypassProxy; } in bypassProxy() function
H A Dservergroupdialog.cpp474 m_mainWidget->m_proxyChBox->setChecked(!server.bypassProxy()); in setServerSettings()
H A Dserver.cpp483 if(getConnectionSettings().server().bypassProxy()) { in connectToIRCServer()
/dports/devel/poco/poco-1.10.1-all/Net/src/
H A DHTTPClientSession.cpp225 if (!_proxyConfig.host.empty() && !bypassProxy()) in sendRequest()
403 if (_proxyConfig.host.empty() || bypassProxy()) in reconnect()
552 bool HTTPClientSession::bypassProxy() const in bypassProxy() function in Poco::Net::HTTPClientSession
/dports/devel/poco/poco-1.10.1-all/Net/testsuite/src/
H A DHTTPClientSessionTest.cpp289 assertTrue (s1.bypassProxy()); in testBypassProxy()
293 assertTrue (s2.bypassProxy()); in testBypassProxy()
297 assertTrue (!s3.bypassProxy()); in testBypassProxy()
/dports/devel/poco/poco-1.10.1-all/NetSSL_OpenSSL/src/
H A DHTTPSClientSession.cpp140 if (getProxyHost().empty() || bypassProxy()) in connect()
/dports/devel/poco/poco-1.10.1-all/Net/include/Poco/Net/
H A DHTTPClientSession.h285 bool bypassProxy() const;
/dports/www/firefox/firefox-99.0/netwerk/protocol/http/
H A DHttpChannelParent.h146 const bool& beConservative, const bool& bypassProxy,
H A DHttpChannelParent.cpp134 a.bypassProxy(), a.tlsFlags(), a.loadInfo(), a.cacheKey(), in Init()
369 const bool& bypassProxy, const uint32_t& tlsFlags, in DoAsyncOpen() argument
H A DnsIHttpChannelInternal.idl265 [must_use] attribute boolean bypassProxy;
H A DHttpChannelChild.cpp2158 openArgs.bypassProxy() = BypassProxy(); in ProcessOnStartRequest()
/dports/www/firefox/firefox-99.0/netwerk/ipc/
H A DNeckoChannelParams.ipdlh305 bool bypassProxy;
374 bool bypassProxy;
/dports/www/firefox/firefox-99.0/toolkit/components/telemetry/app/
H A DTelemetrySend.jsm1444 request.bypassProxy ||
1456 { bypassProxy: true },
/dports/irc/konversation/konversation-21.12.3/src/
H A Dapplication.cpp860 cgServer.writeEntry("BypassProxy", server.bypassProxy()); in saveOptions()