Searched defs:proxy (Results 1 - 25 of 68) sorted by relevance

123

/external/webkit/WebCore/bindings/v8/
H A DScriptCachedFrameData.cpp63 V8Proxy* proxy = V8Proxy::retrieve(frame); local
64 if (proxy)
65 proxy->windowShell()->setContext(m_context.get());
H A DWorkerScriptController.h51 WorkerContextExecutionProxy* proxy() { return m_proxy.get(); } function in class:WebCore::WorkerScriptController
H A DScheduledAction.cpp94 V8Proxy* proxy = V8Proxy::retrieve(context); local
95 if (proxy)
96 execute(proxy);
105 void ScheduledAction::execute(V8Proxy* proxy) argument
107 ASSERT(proxy);
116 proxy->setTimerCallback(true);
120 proxy->callFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Context->Global(), m_argc, m_argv);
123 proxy->evaluate(m_code, 0);
125 proxy->setTimerCallback(false);
H A DV8IsolatedContext.cpp53 V8IsolatedContext::V8IsolatedContext(V8Proxy* proxy, int extensionGroup) argument
58 m_context = SharedPersistent<v8::Context>::create(proxy->windowShell()->createNewContext(v8::Handle<v8::Object>(), extensionGroup));
69 proxy->windowShell()->installDOMWindow(m_context->get(), proxy->frame()->domWindow());
79 proxy->frame()->loader()->client()->didCreateIsolatedScriptContext();
H A DV8NodeFilterCondition.cpp75 V8Proxy* proxy = V8Proxy::retrieve(); local
76 ASSERT(proxy);
78 v8::Handle<v8::Value> result = proxy->callFunction(callback, object, 1, args.get());
H A DScriptController.h65 V8Proxy* proxy() { return m_proxy.get(); } function in class:WebCore::ScriptController
76 // Evaluate a script file in the environment of this proxy.
H A DScriptState.cpp62 // Skip proxy object. The proxy object will survive page navigation while we need
96 V8Proxy* proxy = frame->script()->proxy(); local
97 return ScriptState::forContext(proxy->mainWorldContext());
H A DV8LazyEventListener.cpp68 if (V8Proxy* proxy = V8Proxy::retrieve(context))
69 return proxy->callFunction(handlerFunction, receiver, 1, parameters);
86 V8Proxy* proxy = V8Proxy::retrieve(context); local
87 if (!proxy)
91 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
119 v8::Local<v8::Value> value = proxy->runScript(script, false);
H A DV8Utilities.cpp131 WorkerContextExecutionProxy* proxy = WorkerContextExecutionProxy::retrieve(); local
132 if (proxy)
133 return proxy->workerContext()->scriptExecutionContext();
H A DV8WorkerContextEventListener.cpp49 return workerContext->script()->proxy();
68 WorkerContextExecutionProxy* proxy = workerProxy(context); local
69 if (!proxy)
72 v8::Handle<v8::Context> v8Context = proxy->context();
95 WorkerContextExecutionProxy* proxy = workerProxy(context); local
96 if (!proxy)
99 v8::Handle<v8::Context> v8Context = proxy->context();
145 if (WorkerContextExecutionProxy* proxy = workerProxy(context))
146 proxy->trackEvent(event);
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java53 * Flag whether authenticating against a proxy.
55 private boolean proxy; field in class:AuthSchemeBase
77 this.proxy = false;
79 this.proxy = true;
118 * Returns <code>true</code> if authenticating against a proxy, <code>false</code>
121 * @return <code>true</code> if authenticating against a proxy, <code>false</code>
125 return this.proxy;
H A DBasicScheme.java157 boolean proxy) {
174 if (proxy) {
154 authenticate( final Credentials credentials, final String charset, boolean proxy) argument
/external/chromium/net/http/
H A Dhttp_auth_handler_negotiate_posix.cc40 const ProxyInfo* proxy) {
36 GenerateCredentials( const std::wstring& username, const std::wstring& password, const HttpRequestInfo* request, const ProxyInfo* proxy) argument
H A Dhttp_auth_handler_negotiate_win.cc22 const ProxyInfo* proxy) {
30 proxy,
18 GenerateCredentials( const std::wstring& username, const std::wstring& password, const HttpRequestInfo* request, const ProxyInfo* proxy) argument
H A Dhttp_auth_handler_ntlm.cc17 const ProxyInfo* proxy) {
26 proxy,
13 GenerateCredentials( const std::wstring& username, const std::wstring& password, const HttpRequestInfo* request, const ProxyInfo* proxy) argument
H A Dhttp_auth_handler_digest.cc84 const ProxyInfo* proxy) {
98 GetRequestMethodAndPath(request, proxy, &method, &path);
109 const ProxyInfo* proxy,
113 DCHECK(proxy);
80 GenerateCredentials( const std::wstring& username, const std::wstring& password, const HttpRequestInfo* request, const ProxyInfo* proxy) argument
107 GetRequestMethodAndPath( const HttpRequestInfo* request, const ProxyInfo* proxy, std::string* method, std::string* path) const argument
/external/easymock/src/org/easymock/internal/
H A DMockInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) argument
39 new Invocation(proxy, method, args));
H A DObjectMethodsFilter.java61 public final Object invoke(Object proxy, Method method, Object[] args) argument
64 return Boolean.valueOf(proxy == args[0]);
67 return Integer.valueOf(System.identityHashCode(proxy));
70 return mockToString(proxy);
72 return delegate.invoke(proxy, method, args);
75 private String mockToString(Object proxy) { argument
76 return (name != null) ? name : "EasyMock for " + mockType(proxy);
79 private String mockType(Object proxy) { argument
80 if (Proxy.isProxyClass(proxy.getClass()))
81 return proxy
[all...]
/external/apache-http/src/org/apache/http/conn/params/
H A DConnRouteParams.java84 * @return the default proxy set in the argument parameters, or
91 HttpHost proxy = (HttpHost)
93 if ((proxy != null) && NO_HOST.equals(proxy)) {
95 proxy = null;
97 return proxy;
106 * @param proxy the value to set, may be <code>null</code>.
112 HttpHost proxy) {
116 params.setParameter(DEFAULT_PROXY, proxy);
111 setDefaultProxy(HttpParams params, HttpHost proxy) argument
/external/webkit/WebCore/bindings/v8/custom/
H A DV8CustomVoidCallback.cpp87 V8Proxy* proxy = V8Proxy::retrieve(); local
88 ASSERT(proxy);
90 v8::Handle<v8::Value> result = proxy->callFunction(callbackFunction, thisObject, argc, argv);
96 proxy->frame()->document()->reportException(toWebCoreString(message->Get()), message->GetLineNumber(), toWebCoreString(message->GetScriptResourceName()));
H A DV8CustomXPathNSResolver.cpp41 PassRefPtr<V8CustomXPathNSResolver> V8CustomXPathNSResolver::create(V8Proxy* proxy, v8::Handle<v8::Object> resolver) argument
43 return adoptRef(new V8CustomXPathNSResolver(proxy, resolver));
46 V8CustomXPathNSResolver::V8CustomXPathNSResolver(V8Proxy* proxy, v8::Handle<v8::Object> resolver) argument
47 : m_proxy(proxy)
58 V8Proxy* proxy = m_proxy; local
60 if (!proxy) {
61 proxy = V8Proxy::retrieve();
62 if (!proxy)
77 Frame* frame = proxy->frame();
90 v8::Handle<v8::Value> retval = proxy
[all...]
H A DV8HTMLDocumentCustom.cpp171 V8Proxy* proxy = V8Proxy::retrieve(frame); local
172 ASSERT(proxy);
174 v8::Local<v8::Value> result = proxy->callFunction(v8::Local<v8::Function>::Cast(function), global, args.Length(), params);
210 if (V8Proxy* proxy = V8Proxy::retrieve(impl->frame()))
211 proxy->windowShell()->updateDocumentWrapper(wrapper);
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java62 /** 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
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,
159 public HttpRoute(HttpHost target, InetAddress local, HttpHost proxy, argument
203 HttpRoute(HttpHost target, InetAddress local, HttpHost proxy, boolean secure) argument
222 toChain(HttpHost proxy) argument
[all...]
H A DRouteTracker.java67 /** The proxy chain, if any. */
127 * Tracks connecting to the first proxy.
129 * @param proxy the proxy connected to
133 public final void connectProxy(HttpHost proxy, boolean secure) { argument
134 if (proxy == null) {
141 this.proxyChain = new HttpHost[]{ proxy };
157 throw new IllegalStateException("No tunnel without proxy.");
165 * Tracks tunnelling to a proxy in a proxy chai
173 tunnelProxy(HttpHost proxy, boolean secure) argument
[all...]
/external/v8/test/cctest/
H A Dtest-alloc.cc139 Handle<Proxy> proxy = Factory::NewProxy(&kDescriptor); local
143 proxy,

Completed in 172 milliseconds

123