/external/apache-http/src/org/apache/http/impl/conn/ |
DefaultHttpRoutePlanner.java | 55 * nor of system or browser proxy settings. 104 final HttpHost proxy = local 112 if (proxy == null) { 115 route = new HttpRoute(target, local, proxy, secure);
|
AbstractPoolEntry.java | 162 final HttpHost proxy = route.getProxyHost(); local 166 (proxy != null) ? proxy : route.getTargetHost(), 178 if (proxy == null) { 181 localTracker.connectProxy(proxy, this.connection.isSecure()); 190 * request to the (last) proxy. 206 //@@@ check for proxy in planned route? 225 * Tracks tunnelling of the connection to a chained proxy. 227 * request to the previous proxy. 229 * @param next the proxy to which the tunnel was established [all...] |
ProxySelectorRoutePlanner.java | 37 import java.net.Proxy; 60 * By default, it will pick up the proxy settings of the JVM, either 72 /** The proxy selector to use, or <code>null</code> for system default. */ 77 * Creates a new proxy selector route planner. 80 * @param prosel the proxy selector, or 96 * Obtains the proxy selector to use. 98 * @return the proxy selector, or <code>null</code> for the system default 106 * Sets the proxy selector to use. 108 * @param prosel the proxy selector, or 146 // If the client or request explicitly specifies a proxy (or n 148 HttpHost proxy = (HttpHost) request.getParams().getParameter(ConnRoutePNames.DEFAULT_PROXY); local [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_android.cc | 5 #include "net/proxy/proxy_config_service_android.h" 7 #include "net/proxy/proxy_config.h" 31 void ProxyConfigServiceAndroid::UpdateProxySettings(std::string& proxy, 33 if (proxy == m_proxy) 36 m_proxy = proxy;
|
/external/webkit/Source/WebKit2/UIProcess/ |
TiledDrawingAreaTile.h | 50 static PassRefPtr<TiledDrawingAreaTile> create(TiledDrawingAreaProxy* proxy, const Coordinate& tileCoordinate) { return adoptRef(new TiledDrawingAreaTile(proxy, tileCoordinate)); } 71 TiledDrawingAreaTile(TiledDrawingAreaProxy* proxy, const TiledDrawingAreaTile::Coordinate& tileCoordinate);
|
/libcore/luni/src/main/java/libcore/net/url/ |
FileHandler.java | 21 import java.net.Proxy; 48 * <code>proxy</code> is not used in FileURLConnection. 52 * @param proxy 53 * Proxy 64 public URLConnection openConnection(URL url, Proxy proxy) throws IOException { 76 return (proxy == null) ? ftpURL.openConnection() : ftpURL.openConnection(proxy);
|
/external/javassist/src/test/test/javassist/proxy/ |
ProxyCacheGCTest.java | 1 package test.javassist.proxy; 4 import javassist.util.proxy.MethodFilter; 5 import javassist.util.proxy.MethodHandler; 6 import javassist.util.proxy.ProxyFactory; 7 import javassist.util.proxy.ProxyObject; 11 * test which checks that proxy classes are not retained after their classloader is released. 30 baseHandler = basePool.get("javassist.util.proxy.MethodHandler"); 31 baseFilter = basePool.get("javassist.util.proxy.MethodFilter"); 59 * and proxy in the current loader and then 89 // now create a proxyfactory and use it to create a proxy [all...] |
ProxyFactoryCompatibilityTest.java | 1 package test.javassist.proxy; 4 import javassist.util.proxy.MethodFilter; 5 import javassist.util.proxy.MethodHandler; 6 import javassist.util.proxy.ProxyFactory; 7 import javassist.util.proxy.ProxyObject; 13 * test which checks that it is still possible to use the old style proxy factory api 14 * to create proxy classes which set their own handler. it checks that caching is 93 * test class used as the super for the proxy 109 * test interface used as an interface implemented by the proxy
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
proxy_form_controller.js | 7 * wraps a form element with logic that enables implementation of proxy 14 * Wraps the proxy configuration form, binding proper handlers to its various 54 * The proxy types we're capable of handling. 86 * The response type from 'proxy.settings.get' 96 * Retrieves proxy settings that have been persisted across restarts. 98 * @return {?ProxyConfig} The persisted proxy configuration, or null if no 109 * Persists proxy settings across restarts. 111 * @param {!ProxyConfig} config The proxy config to persist. 168 * @return {Array.<string>} A list of hostnames that should bypass the proxy. 177 * the proxy. If empty, the bypass list is emptied [all...] |
/external/apache-http/src/org/apache/http/conn/routing/ |
HttpRoute.java | 62 /** The proxy servers, if any. */ 65 /** Whether the the route is tunnelled through the proxy. */ 77 * This constructor does <i>not</i> clone the proxy chain array, 86 * @param proxies the proxy chain to use, or 105 ("Proxy required if tunnelled."); 129 * @param proxies the proxy chain to use, or 143 * Creates a new route with at most one proxy. 148 * @param proxy the proxy to use, or 153 * via the proxy, [all...] |
/libcore/luni/src/main/java/libcore/net/http/ |
HttpURLConnectionImpl.java | 31 import java.net.Proxy; 58 private Proxy proxy; field in class:HttpURLConnectionImpl 72 protected HttpURLConnectionImpl(URL url, int port, Proxy proxy) { 74 this.proxy = proxy; 207 ? ((InetSocketAddress) proxy.address()).getHostName() 213 ? ((InetSocketAddress) proxy.address()).getPort() 344 * headers, proxy and target URL or this connection may be adjusted t [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8LazyEventListener.cpp | 68 if (V8Proxy* proxy = V8Proxy::retrieve(context)) 69 return proxy->callFunction(handlerFunction, receiver, 1, parameters); 89 V8Proxy* proxy = V8Proxy::retrieve(context); local 90 if (!proxy) 94 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy); 122 v8::Local<v8::Value> value = proxy->runScript(script, false);
|
WorkerScriptController.h | 51 WorkerContextExecutionProxy* proxy() { return m_proxy.get(); } function in class:WebCore::WorkerScriptController
|
V8EventListener.cpp | 76 if (V8Proxy* proxy = V8Proxy::retrieve(context)) 77 return proxy->callFunction(handlerFunction, receiver, 1, parameters);
|
/frameworks/base/tools/aidl/ |
generate_java_binder.cpp | 102 m->comment += " * generating a proxy if needed.\n */"; 138 proxyType += ".Stub.Proxy"; 173 // Proxy() 176 ctor->name = "Proxy"; 384 // == the proxy method =================================================== 385 Method* proxy = new Method; local 386 proxy->comment = gather_comments(method->comments_token->extra); 387 proxy->modifiers = PUBLIC; 388 proxy->returnType = NAMES.Search(method->type.type.data); 389 proxy->returnTypeDimension = method->type.dimension 537 ProxyClass* proxy = new ProxyClass( local [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
portallocator.h | 99 const talk_base::ProxyInfo& proxy() const { return proxy_; } function in class:cricket::PortAllocator 100 void set_proxy(const std::string& agent, const talk_base::ProxyInfo& proxy) { 102 proxy_ = proxy;
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
TreeBase.h | 30 namespace proxy namespace in namespace:mcld 40 } // namespace of template proxy 70 proxy::move<DIRECT>(m_pNode); 86 namespace proxy namespace in namespace:mcld 104 } //namespace of template proxy
|
/frameworks/base/core/java/android/webkit/ |
HTML5VideoViewProxy.java | 43 * <p>Proxy for HTML5 video views. 89 // The proxy that is currently playing (if any). 146 HTML5VideoViewProxy proxy, WebViewClassic webView) { 175 mHTML5VideoView = new HTML5VideoFullScreen(proxy.getContext(), 178 mCurrentProxy = proxy; 180 mHTML5VideoView.enterFullScreenVideoState(layerId, proxy, webView); 183 public static void exitFullScreenVideo(HTML5VideoViewProxy proxy, 196 public static void play(String url, int time, HTML5VideoViewProxy proxy, 211 && mCurrentProxy != proxy) { 212 mCurrentProxy = proxy; [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
asynchttprequest.h | 53 void set_proxy(const ProxyInfo& proxy) { 54 proxy_ = proxy;
|
httprequest.h | 53 void set_proxy(const ProxyInfo& proxy) { 54 proxy_ = proxy;
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CustomXPathNSResolver.cpp | 68 if (V8Proxy* proxy = V8Proxy::retrieve()) { 69 if (Frame* frame = proxy->frame())
|
/frameworks/av/include/media/stagefright/ |
CameraSourceTimeLapse.h | 36 const sp<ICameraRecordingProxy> &proxy, 109 const sp<ICameraRecordingProxy> &proxy,
|
CameraSource.h | 72 const sp<ICameraRecordingProxy> &proxy, 159 CameraSource(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, 199 status_t init(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, 204 const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, 209 const sp<ICameraRecordingProxy>& proxy,
|
/frameworks/compile/mclinker/include/mcld/MC/ |
MCLDInputTree.h | 101 proxy::hook<Positional>(pFrom.m_pNode, pTo.m_pNode); 111 proxy::hook<Inclusive>(pFrom.m_pNode, pTo.m_pNode); 199 proxy::hook<TreeIteratorBase::Leftward>(pPosition.m_pNode, 202 proxy::hook<DIRECT>(pPosition.m_pNode, 213 proxy::hook<TreeIteratorBase::Leftward>(pPosition.m_pNode, 216 proxy::hook<DIRECT>(pPosition.m_pNode, 228 proxy::hook<TreeIteratorBase::Leftward>(pPosition.m_pNode, 231 proxy::hook<DIRECT>(pPosition.m_pNode,
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ApnSetting.java | 28 public final String proxy; field in class:ApnSetting 55 String proxy, String port, 63 this.proxy = proxy; 87 * <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>, 92 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>, 162 .append(", ").append(proxy)
|