/external/webkit/WebCore/bindings/v8/custom/ |
V8CustomXPathNSResolver.cpp | 41 PassRefPtr<V8CustomXPathNSResolver> V8CustomXPathNSResolver::create(V8Proxy* proxy, v8::Handle<v8::Object> resolver) 43 return adoptRef(new V8CustomXPathNSResolver(proxy, resolver)); 46 V8CustomXPathNSResolver::V8CustomXPathNSResolver(V8Proxy* proxy, v8::Handle<v8::Object> resolver) 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->callFunction(function, m_resolver, argc, argv) [all...] |
/dalvik/tests/044-proxy/src/ |
Clash.java | 20 import java.lang.reflect.Proxy; 23 * Try to instantiate a proxy class with interfaces that have conflicting 32 Proxy.newProxyInstance(Clash.class.getClassLoader(), 41 Proxy.newProxyInstance(Clash.class.getClassLoader(), 65 public Object invoke(Object proxy, Method method, Object[] args)
|
Clash3.java | 20 import java.lang.reflect.Proxy; 23 * Try to instantiate a proxy class with interfaces that have conflicting 31 Proxy.newProxyInstance(Clash.class.getClassLoader(), 70 public Object invoke(Object proxy, Method method, Object[] args)
|
Clash4.java | 20 import java.lang.reflect.Proxy; 23 * Try to instantiate a proxy class with interfaces that have conflicting 31 Proxy.newProxyInstance(Clash.class.getClassLoader(), 72 public Object invoke(Object proxy, Method method, Object[] args)
|
WrappedThrow.java | 21 import java.lang.reflect.Proxy; 25 * Create a Proxy class that blah. 31 Object proxy; local 34 proxy = Proxy.newProxyInstance(WrappedThrow.class.getClassLoader(), 42 InterfaceW1 if1 = (InterfaceW1) proxy; 43 InterfaceW2 if2 = (InterfaceW2) proxy; 176 * Invocation handler for our proxy class. 186 * This is called when anything gets invoked in the proxy object. 188 public Object invoke(Object proxy, Method method, Object[] args [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...] |
RouteInfo.java | 55 * the first proxy. 56 * Tunnelled routes are established by connecting to the first proxy 58 * Routes without a proxy cannot be tunnelled. 100 * A direct route has one hop. A route through a proxy has two hops. 112 * the target of previous hops is the respective proxy in the chain. 113 * For a route through exactly one proxy, target of hop 0 is the proxy 130 * Obtains the first proxy host. 132 * @return the first proxy in the proxy chain, o [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/ |
Handler.java | 21 import java.net.Proxy; 50 * <code>proxy</code> is not used in FileURLConnection. 54 * @param proxy 55 * Proxy 66 public URLConnection openConnection(URL url, Proxy proxy) 69 // K034b=url and proxy can not be null 81 return (proxy == null) ? ftpURL.openConnection() : ftpURL 82 .openConnection(proxy);
|
/external/bluetooth/bluez/serial/ |
proxy.c | 64 #include "proxy.h" 92 char *path; /* Proxy path */ 100 struct termios proxy_ti; /* Proxy TTY settings */ 220 sdp_set_info_attr(record, "Serial Proxy", NULL, "Serial Proxy"); 491 error("Refusing connect from %s: Proxy already in use", 496 debug("Serial Proxy: incoming connect from %s", address); 582 "Proxy enable failed (%s)", strerror(-err)); 797 debug("Unregistered proxy: %s", prx->address); 818 snprintf(path, MAX_PATH_LENGTH, "%s/proxy%d" 1043 struct serial_proxy *proxy = user_data; local 1053 struct serial_proxy *proxy; local [all...] |
/external/webkit/WebCore/workers/ |
DefaultSharedWorkerRepository.cpp | 100 // The thread is freed when the proxy is destroyed, so we need to make sure that the proxy stays around until the SharedWorkerContext exits. 120 // If the origins don't match, or the names don't match, then this is not the proxy we are looking for. 188 // The proxy may be freed by this call, so do not reference it any further. 206 // Remove the document from our set (if it's there) and if that was the last document in the set, mark the proxy as closed. 217 // Stop the worker thread - the proxy will stay around until we get workerThreadExited() notification. 266 SharedWorkerScriptLoader::SharedWorkerScriptLoader(PassRefPtr<SharedWorker> worker, PassOwnPtr<MessagePortChannel> port, PassRefPtr<SharedWorkerProxy> proxy) 269 , m_proxy(proxy) 305 void DefaultSharedWorkerRepository::workerScriptLoaded(SharedWorkerProxy& proxy, const String& userAgent, const String& workerScript, PassOwnPtr<MessagePortChannel> port) 308 if (proxy.isClosing() 374 RefPtr<SharedWorkerProxy> proxy = getProxy(name, url); local 402 RefPtr<SharedWorkerProxy> proxy = SharedWorkerProxy::create(name, url, origin.release()); local [all...] |
/dalvik/libcore/luni/src/main/java/java/net/ |
ProxySelector.java | 22 * Selects an applicable proxy server when connecting to a resource specified by 23 * a URL. Proxy selectors are concrete subclasses of {@code ProxySelector} and 25 * connection can't be established, the caller should notify the proxy selector 101 * @return a list containing all applicable proxies. If no proxy is 102 * available, the list contains only the {@code Proxy.NO_PROXY} 107 public abstract List<Proxy> select(URI uri); 110 * Notifies the {@code ProxySelector} that a connection to the proxy server 118 * the address of the proxy.
|
/external/easymock/src/org/easymock/internal/ |
JavaProxyFactory.java | 19 import java.lang.reflect.Proxy;
24 return (T) Proxy.newProxyInstance(toMock.getClassLoader(),
|
/frameworks/base/core/java/android/webkit/ |
Network.java | 53 * Proxy username if known (used for pre-emptive proxy authentication). 58 * Proxy password if known (used for pre-emptive proxy authentication). 104 * Enables data state and proxy tracking 205 * @return True iff there is a valid proxy set. 208 // The proxy host and port can be set within a different thread during 216 * Get the proxy hostname. 217 * @return The proxy hostname obtained from the network queue and proxy [all...] |
HTML5VideoViewProxy.java | 55 * <p>Proxy for HTML5 video views. 96 // The proxy that is currently playing (if any). 111 public TimeupdateTask(HTML5VideoViewProxy proxy) { 112 mProxy = proxy; 147 public static void play(String url, int time, HTML5VideoViewProxy proxy, 149 if (mCurrentProxy == proxy) { 158 proxy.dispatchOnEnded(); 162 mCurrentProxy = proxy; 165 mLayout = new FrameLayout(proxy.getContext()); 170 mVideoView = new VideoView(proxy.getContext()) [all...] |
/external/opencore/codecs_v2/omx/omx_proxy/src/ |
pv_omx_interface_proxy.cpp | 345 CPVProxyInterface_OMX *proxy = FindInterface(msg->iProxyId); local 346 if (proxy) 347 proxy->iClient->CleanupCommand(msg->iMsgId, msg->iMsg); 354 //proxy list... 369 CPVProxyInterface_OMX *proxy = FindInterface(msg->iProxyId); local 370 if (proxy) 371 proxy->iServer->CleanupNotification(msg->iMsgId, msg->iMsg); 457 //Proxy extensions call this to register themselves. 461 CPVProxyInterface_OMX proxy(id, &server_proxy, &client_proxy); 463 OSCL_TRY(err, iProxyList.push_back(proxy);); 625 CPVInterfaceProxy_OMX *proxy = (CPVInterfaceProxy_OMX *) aPtr; local [all...] |
pv_omx_interface_proxy_handler.cpp | 63 //call proxy server message handler 64 CPVProxyInterface_OMX *proxy = iProxy->FindInterface(command.iProxyId); local 65 if (proxy) 66 proxy->iServer->HandleCommand(command.iMsgId, command.iCmdId, command.iMsg); 68 OSCL_ASSERT(NULL != proxy);//debug error.
|
pv_omx_interface_proxy_notifier.cpp | 62 //call proxy client message handler. 63 CPVProxyInterface_OMX *proxy = iProxy->FindInterface(notice.iProxyId); local 64 if (proxy) 65 proxy->iClient->HandleNotification(notice.iMsgId, notice.iMsg); 67 OSCL_ASSERT(NULL != proxy);//debug error.
|
/dalvik/libcore/awt-kernel/src/main/java/java/beans/ |
PropertyChangeListenerProxy.java | 23 * The implementation of this listener proxy just delegates the received events 34 * Creates a new listener proxy that associates a listener with a property 49 * Returns the name of the property associated with this listener proxy.
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothPbap.java | 34 * BluetoothPbap is a proxy object for controlling the Bluetooth Pbap 39 * are finished with the BluetoothPbap, so that this proxy object can unbind 94 * Called to notify the client when this proxy object has been 102 * Called to notify the client that this proxy object has been 112 * Create a BluetoothPbap proxy object. 145 * @return One of the STATE_ return codes, or STATE_ERROR if this proxy 155 Log.w(TAG, "Proxy not attached to service"); 164 * connecting state, or if this proxy object is not connected to 174 Log.w(TAG, "Proxy not attached to service"); 182 * include connecting). Returns false if not connected, or if this proxy [all...] |
/packages/apps/Email/src/org/apache/commons/io/output/ |
ProxyOutputStream.java | 24 * A Proxy stream which acts as expected, that is it passes the method
37 * @param proxy the OutputStream to delegate to
39 public ProxyOutputStream(OutputStream proxy) {
40 super(proxy);
41 // the proxy is stored in a protected superclass variable named 'out'
|
/packages/apps/Settings/src/com/android/settings/ |
ProxySelector.java | 23 import android.net.Proxy; 41 * To start the Proxy Selector activity, create the following intent. 82 setContentView(R.layout.proxy); 119 // Use the default proxy settings provided by the carrier 120 hostname = Proxy.getDefaultHost(); 121 port = Proxy.getDefaultPort(); 124 hostname = Proxy.getHost(this); 125 port = Proxy.getPort(this); 208 // the user has cleared the input boxes in order to not use a proxy. 211 // FIXME: If the user types in a proxy that matches the default, shoul [all...] |
/external/opencore/baselibs/thread_messaging/src/ |
pv_interface_proxy.cpp | 291 CPVProxyInterface *proxy = FindInterface(msg->iProxyId); local 292 if (proxy) 293 proxy->iClient->CleanupCommand(msg->iMsgId, msg->iMsg); 300 //proxy list... 315 CPVProxyInterface *proxy = FindInterface(msg->iProxyId); local 316 if (proxy) 317 proxy->iServer->CleanupNotification(msg->iMsgId, msg->iMsg); 403 //Proxy extensions call this to register themselves. 407 CPVProxyInterface proxy(id, &server_proxy, &client_proxy); 409 OSCL_TRY(err, iProxyList.push_back(proxy);); 565 CPVInterfaceProxy *proxy = (CPVInterfaceProxy *) aPtr; local [all...] |
/external/guava/src/com/google/common/util/concurrent/ |
TimeLimiter.java | 29 * TargetType proxy = limiter.newProxy( 32 * return proxy.someMethod(); 53 * other hand, the time limit is reached, the proxy will attempt to abort the 57 * It is important to note that the primary purpose of the proxy object is to 60 * of the guarantees made by the proxy is implementation-dependent. However, 64 * @param target the object to proxy 65 * @param interfaceType the interface you wish the returned proxy to 68 * callers are willing to wait on each method call to the proxy 70 * callers are willing to wait on each method call to the proxy 71 * @return a time-limiting proxy [all...] |
/external/webkit/WebKit/qt/WebCoreSupport/ |
QtFallbackWebPopup.cpp | 64 if (QGraphicsProxyWidget* proxy = graphicsProxyWidget()) 65 proxy->setVisible(false); 88 // If we create a proxy, then the deletion of the proxy and the 89 // combo will be done by the proxy's parent (QGraphicsWebView) 101 // the proxy widget, nor the coordinates are needed.
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
ApnSetting.java | 27 String proxy; field in class:ApnSetting 40 public ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, 47 this.proxy = proxy; 60 // data[2] = proxy 93 .append(", ").append(proxy)
|