Home
last modified time | relevance | path

Searched refs:ProxyFactory (Results 1 – 15 of 15) sorted by relevance

/external/javassist/src/test/test/javassist/proxy/
DProxySimpleTest.java12 import javassist.util.proxy.ProxyFactory;
17 ProxyFactory.ClassLoaderProvider cp = ProxyFactory.classLoaderProvider; in testReadWrite()
18 ProxyFactory.classLoaderProvider = new ProxyFactory.ClassLoaderProvider() { in testReadWrite()
19 public ClassLoader get(ProxyFactory pf) { in testReadWrite()
23 ProxyFactory pf = new ProxyFactory(); in testReadWrite()
30 ProxyFactory.classLoaderProvider = cp; in testReadWrite()
44 ProxyFactory pf = new ProxyFactory(); in testWriteReplace()
49 ProxyFactory pf2 = new ProxyFactory(); in testWriteReplace()
DProxyFactoryCompatibilityTest.java6 import javassist.util.proxy.ProxyFactory;
44 System.out.println("ProxyFactory.useCache = " + ProxyFactory.useCache); in testFactoryCompatibility()
46 ProxyFactory factory = new ProxyFactory(); in testFactoryCompatibility()
70 ProxyFactory factory2 = new ProxyFactory(); in testFactoryCompatibility()
DJASSIST113RegressionTest.java3 import javassist.util.proxy.ProxyFactory;
18 ProxyFactory proxyFactory = new ProxyFactory(); in testProxyFactoryWithNonPublicInterface()
DProxyCacheGCTest.java6 import javassist.util.proxy.ProxyFactory;
42 ProxyFactory.useCache = false; in testCacheGC()
53 ProxyFactory.useCache = true; in testCacheGC()
91 ProxyFactory factory = new ProxyFactory(); in createProxy()
DProxySerializationTest.java20 ProxyFactory factory = new ProxyFactory(); in testSerialization()
/external/chromium_org/ppapi/proxy/
Dinterface_list.cc140 #define PROXY_FACTORY_NAME(api_name) ProxyFactory<PROXY_CLASS_NAME(api_name)>
163 InterfaceProxy* ProxyFactory(Dispatcher* dispatcher) { in ProxyFactory() function
253 AddProxy(API_ID_PPB_INSTANCE_PRIVATE, &ProxyFactory<PPB_Instance_Proxy>); in InterfaceList()
258 AddProxy(API_ID_PPB_VAR_DEPRECATED, &ProxyFactory<PPB_Var_Deprecated_Proxy>); in InterfaceList()
265 &ProxyFactory<PPP_ContentDecryptor_Private_Proxy>); in InterfaceList()
270 AddProxy(API_ID_PPB_TESTING, &ProxyFactory<PPB_Testing_Proxy>); in InterfaceList()
276 AddProxy(API_ID_PPP_INSTANCE, &ProxyFactory<PPP_Instance_Proxy>); in InterfaceList()
281 AddProxy(API_ID_PPP_PRINTING, &ProxyFactory<PPP_Printing_Proxy>); in InterfaceList()
284 AddProxy(API_ID_PPP_TEXT_INPUT, &ProxyFactory<PPP_TextInput_Proxy>); in InterfaceList()
/external/chromium_org/chrome_frame/
Dchrome_frame_automation.h32 class ProxyFactory; variable
54 class ProxyFactory; variable
275 class ProxyFactory {
277 ProxyFactory();
278 virtual ~ProxyFactory();
376 void set_proxy_factory(ProxyFactory* factory) { in set_proxy_factory()
488 ProxyFactory* proxy_factory_;
Dchrome_frame_automation.cc419 ProxyFactory::ProxyFactory() { in ProxyFactory() function in ProxyFactory
422 ProxyFactory::~ProxyFactory() { in ~ProxyFactory()
431 void ProxyFactory::GetAutomationServer( in GetAutomationServer()
464 bool ProxyFactory::ReleaseAutomationServer(void* server_id, in ReleaseAutomationServer()
519 static base::LazyInstance<ProxyFactory>::Leaky
/external/javassist/src/main/javassist/util/proxy/
DProxyObjectOutputStream.java48 if (ProxyFactory.isProxyClass(cl)) { in writeClassDescriptor()
52 byte[] signature = ProxyFactory.getFilterSignature(cl); in writeClassDescriptor()
DProxyObjectInputStream.java79 ProxyFactory factory = new ProxyFactory(); in readClassDescriptor()
DSerializedProxy.java80 ProxyFactory f = new ProxyFactory();
DRuntimeSupport.java209 return new SerializedProxy(clazz, ProxyFactory.getFilterSignature(clazz), methodHandler); in makeSerializedProxy()
DProxyFactory.java152 public class ProxyFactory { class
333 public ProxyFactory() { in ProxyFactory() method in ProxyFactory
556 public ClassLoader get(ProxyFactory pf); in get()
581 public ClassLoader get(ProxyFactory pf) {
/external/chromium_org/chrome_frame/test/
Dproxy_factory_mock.h19 class MockProxyFactory : public ProxyFactory {
Dproxy_factory_mock.cc26 ProxyFactory proxy_factory_;