HomeSort by relevance Sort by last modified time
    Searched full:proxy (Results 51 - 75 of 717) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/src/signature/model/impl/
Uninitialized.java 21 import java.lang.reflect.Proxy;
42 UNINITIALIZED = Proxy.newProxyInstance(Uninitialized.class
48 public Object invoke(Object proxy, Method method, Object[] args)
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
AuthenticatorRequestorTypeTest.java 38 assertEquals(Authenticator.RequestorType.PROXY,
39 Authenticator.RequestorType.valueOf("PROXY"));
58 Authenticator.RequestorType.PROXY,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ProxyDrawable.java 37 public void setProxy(Drawable proxy) {
38 if (proxy != this) {
39 mProxy = proxy;
  /external/webkit/WebCore/bindings/v8/
WorldContextHandle.cpp 48 v8::Local<v8::Context> WorldContextHandle::adjustedContext(V8Proxy* proxy) const
51 return proxy->mainWorldContext();
53 return proxy->context();
ScheduledAction.cpp 94 V8Proxy* proxy = V8Proxy::retrieve(context); local
95 if (proxy)
96 execute(proxy);
105 void ScheduledAction::execute(V8Proxy* proxy)
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);
V8WorkerContextEventListener.cpp 49 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);
ScriptState.cpp 62 // 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());
  /packages/apps/Email/src/org/apache/commons/io/input/
CloseShieldInputStream.java 22 * Proxy stream that prevents the underlying input stream from being closed.
34 * Creates a proxy that shields the given input stream from being
45 * sentinel. The original input stream will remain open, but this proxy
  /packages/apps/Email/src/org/apache/commons/io/output/
CloseShieldOutputStream.java 22 * Proxy stream that prevents the underlying output stream from being closed.
34 * Creates a proxy that shields the given output stream from being
45 * sentinel. The original output stream will remain open, but this proxy
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 52 import java.net.Proxy;
100 // Proxy authentication required response code
504 * Tests HTTPS connection process made through the proxy server.
509 notes = "Verifies HTTPS connection process made through the proxy server.",
515 notes = "Verifies HTTPS connection process made through the proxy server.",
521 notes = "Verifies HTTPS connection process made through the proxy server.",
543 .openConnection(new Proxy(Proxy.Type.HTTP,
556 * Tests HTTPS connection process made through the proxy server.
557 * Proxy server needs authentication
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AUTH.java 54 * The proxy authenticate challange header.
56 public static final String PROXY_AUTH = "Proxy-Authenticate";
59 * The proxy authenticate response header.
61 public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
  /external/opencore/baselibs/thread_messaging/src/
pv_interface_proxy_handler.cpp 57 //call proxy server message handler
58 CPVProxyInterface *proxy = iProxy->FindInterface(command.iProxyId); local
59 if (proxy)
60 proxy->iServer->HandleCommand(command.iMsgId, command.iMsg);
pv_interface_proxy_notifier.cpp 57 //call proxy client message handler.
58 CPVProxyInterface *proxy = iProxy->FindInterface(notice.iProxyId); local
59 if (proxy)
60 proxy->iClient->HandleNotification(notice.iMsgId, notice.iMsg);
pv_proxied_interface.h 46 ** Main proxy class. This class defines the public interface
47 ** to the PV proxy.
56 ** proxy and assigns a unique interface ID.
58 ** the life of the main proxy.
71 ** proxy. During this call, the main proxy will de-queue all
77 ** life of the main proxy.
92 ** @return: a unique message ID, assigned by the proxy.
100 ** The proxy will de-queue the message and call its memory cleanup
130 ** @return: a unique message ID, assigned by the proxy
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 6 ATTRIBUTE Proxy-State 33 string
  /external/v8/src/
data-flow.cc 203 VariableProxy* proxy = prop->obj()->AsVariableProxy(); local
204 USE(proxy);
205 ASSERT(proxy != NULL && proxy->var()->is_this());
219 VariableProxy* proxy = expr->obj()->AsVariableProxy(); local
220 USE(proxy);
221 ASSERT(proxy != NULL && proxy->var()->is_this());
494 VariableProxy* proxy = prop->obj()->AsVariableProxy(); local
495 ASSERT(proxy != NULL && proxy->var()->is_this())
513 VariableProxy* proxy = expr->obj()->AsVariableProxy(); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ObjectProxy.js 43 var proxy = new WebInspector.ObjectProxy();
44 proxy.type = typeof value;
45 proxy.description = value;
46 return proxy;
  /external/opencore/codecs_v2/omx/omx_proxy/src/
pv_omx_proxied_interface.h 52 ** Main proxy class. This class defines the public interface
53 ** to the PV proxy.
62 ** proxy and assigns a unique interface ID.
64 ** the life of the main proxy.
77 ** proxy. During this call, the main proxy will de-queue all
83 ** life of the main proxy.
98 ** @return: a unique message ID, assigned by the proxy.
106 ** The proxy will de-queue the message and call its memory cleanup
136 ** @return: a unique message ID, assigned by the proxy
    [all...]
  /frameworks/base/tools/aidl/
generate_java.cpp 139 m->comment += " * generating a proxy if needed.\n */";
175 proxyType += ".Stub.Proxy";
210 // Proxy()
213 ctor->name = "Proxy";
447 // == the proxy method ===================================================
448 Method* proxy = new Method; local
449 proxy->comment = gather_comments(method->comments_token->extra);
450 proxy->modifiers = PUBLIC;
451 proxy->returnType = NAMES.Search(method->type.type.data);
452 proxy->returnTypeDimension = method->type.dimension
600 ProxyClass* proxy = new ProxyClass( local
    [all...]
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 67 /** 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) {
134 if (proxy == null) {
135 throw new IllegalArgumentException("Proxy host may not be null.");
141 this.proxyChain = new HttpHost[]{ proxy };
157 throw new IllegalStateException("No tunnel without proxy.");
165 * Tracks tunnelling to a proxy in a proxy chain
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 37 * BluetoothHeadset is a proxy object for controlling the Bluetooth Headset
42 * are finished with the BluetoothHeadset, so that this proxy object can unbind
137 * Called to notify the client when this proxy object has been
145 * Called to notify the client that this proxy object has been
155 * Create a BluetoothHeadset proxy object.
189 * @return One of the STATE_ return codes, or STATE_ERROR if this proxy
199 Log.w(TAG, "Proxy not attached to service");
208 * state, or if this proxy object is not connected to the Headset
218 Log.w(TAG, "Proxy not attached to service");
245 Log.w(TAG, "Proxy not attached to service")
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
EventListenerProxy.java 29 * Creates a new {@code EventListener} proxy instance.
32 * the listener wrapped by this proxy.
  /dalvik/vm/native/
java_lang_reflect_Proxy.c 18 * java.lang.reflect.Proxy
28 * Generate a proxy class with the specified characteristics. Throws an
  /external/easymock/src/org/easymock/internal/
MockInvocationHandler.java 32 public Object invoke(Object proxy, Method method, Object[] args)
39 new Invocation(proxy, method, args));
  /frameworks/base/core/java/android/webkit/
JsPromptResult.java 39 /*package*/ JsPromptResult(CallbackProxy proxy) {
40 super(proxy, /* unused */ false);

Completed in 102 milliseconds

1 23 4 5 6 7 8 91011>>