HomeSort by relevance Sort by last modified time
    Searched refs:Proxy (Results 51 - 75 of 80) sorted by null

1 23 4

  /external/v8/src/
factory.cc 179 Handle<Proxy> wrapper = Factory::NewProxy(0, TENURED);
199 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) {
200 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy);
204 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
    [all...]
objects-debug.cc 173 Proxy::cast(this)->ProxyPrint();
279 Proxy::cast(this)->ProxyVerify();
589 case PROXY_TYPE: return "PROXY";
923 void Proxy::ProxyPrint() {
924 PrintF("proxy to %p", proxy());
928 void Proxy::ProxyVerify() {
    [all...]
globals.h 253 class Proxy;
objects-inl.h     [all...]
handles.cc 400 // handles referred from proxy objects held by the scripts as long as
413 Proxy* proxy = Script::cast(wrapper->value())->wrapper(); local
414 ASSERT(proxy->proxy() == reinterpret_cast<Address>(cache.location()));
415 proxy->set_proxy(0);
422 if (script->wrapper()->proxy() != NULL) {
425 reinterpret_cast<JSValue**>(script->wrapper()->proxy()));
heap.cc     [all...]
heap.h 98 V(Proxy, prototype_accessors, PrototypeAccessors) \
533 // Allocates a new proxy object.
537 static Object* AllocateProxy(Address proxy,
    [all...]
objects.h 90 // - Proxy
    [all...]
api.cc 2784 i::Handle<i::Proxy> proxy = local
3746 i::Handle<i::Object> proxy = i::Factory::undefined_value(); local
    [all...]
debug.cc     [all...]
objects.cc 147 // data structure used to store the callbacks. Eventually proxy
151 reinterpret_cast<AccessorDescriptor*>(Proxy::cast(structure)->proxy());
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 139 Handle<Proxy> proxy = Factory::NewProxy(&kDescriptor); local
143 proxy,
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 45 * u} using the given {@code proxy}. Since different protocols also have
50 * @param proxy
51 * the proxy that is used to make the connection.
56 * if any argument is {@code null} or the type of proxy is
61 protected URLConnection openConnection(URL u, Proxy proxy) throws IOException {
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 25 import java.lang.reflect.Proxy;
887 isProxy = Proxy.isProxyClass(cl)
    [all...]
ObjectOutputStream.java 22 import java.lang.reflect.Proxy;
122 * Descriptor for java.lang.reflect.Proxy
124 private final ObjectStreamClass proxyClassDesc = ObjectStreamClass.lookup(Proxy.class);
344 * Writes optional information for a proxy class to the target stream. This
345 * optional data can be read when deserializing the proxy class from an
349 * the proxy class to annotate.
    [all...]
ObjectInputStream.java 32 import java.lang.reflect.Proxy;
1869 Class<?> proxy = resolveProxyClass(interfaceNames); local
    [all...]
  /build/tools/droiddoc/src/
DroidDoc.java 23 import java.lang.reflect.Proxy;
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountService.java 36 private static class Proxy implements IMountService {
39 Proxy(IBinder remote) {
626 * proxy if needed.
636 return new IMountService.Stub.Proxy(obj);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
HashMapTest.java 22 import java.lang.reflect.Proxy;
76 public Object invoke(Object proxy, Method m, Object[] args)
342 * Tests for proxy object keys and values
346 MockInterface proxyKey = (MockInterface) Proxy.newProxyInstance(
350 MockInterface proxyValue = (MockInterface) Proxy.newProxyInstance(
355 // Proxy key
359 assertEquals("Failed with proxy object key", val, hm
361 assertTrue("Failed to find proxy key", hm.containsKey(proxyKey));
362 assertEquals("Failed to remove proxy object key", val,
364 assertFalse("Should not have found proxy key", hm.containsKey(proxyKey))
    [all...]
  /dalvik/vm/
Dvm.mk 191 reflect/Proxy.c \
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 44 import java.lang.reflect.Proxy;
183 if (Proxy.isProxyClass(s)) {
190 fail("Should return a proxy class that implements the interfaces named in a proxy class descriptor");
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 32 import java.net.Proxy;
337 * Response code 407 should only come from proxy servers. Android's client
477 MockResponse mockResponse = new MockResponse().setBody("this response comes via a proxy");
483 assertContent("this response comes via a proxy", connection);
521 // https should not use http proxy
548 * We weren't honoring all of the appropriate proxy system properties when
561 * through a proxy. http://b/3097277
569 server.enqueue(new MockResponse().setBody("this response comes via a secure proxy"));
577 assertContent("this response comes via a secure proxy", connection);
580 assertEquals("Connect line failure on proxy",
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 1133 milliseconds

1 23 4