HomeSort by relevance Sort by last modified time
    Searched refs:proxy (Results 1 - 25 of 1222) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
sumtree.py 6 #proxy = FSProxy.FSProxyClient(('voorn.cwi.nl', 4127))
7 proxy = FSProxy.FSProxyLocal()
8 sumtree(proxy)
9 proxy._close()
14 def sumtree(proxy):
15 print "PWD =", proxy.pwd()
16 files = proxy.listfiles()
17 proxy.infolist(files)
18 subdirs = proxy.listsubdirs()
20 proxy.cd(name)
    [all...]
  /system/media/alsa_utils/include/
alsa_device_proxy.h 37 int proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile * profile,
39 int proxy_open(alsa_device_proxy * proxy);
40 void proxy_close(alsa_device_proxy * proxy);
41 int proxy_get_presentation_position(const alsa_device_proxy * proxy,
45 unsigned proxy_get_sample_rate(const alsa_device_proxy * proxy);
46 enum pcm_format proxy_get_format(const alsa_device_proxy * proxy);
47 unsigned proxy_get_channel_count(const alsa_device_proxy * proxy);
48 unsigned int proxy_get_period_size(const alsa_device_proxy * proxy);
49 unsigned proxy_get_latency(const alsa_device_proxy * proxy);
57 int proxy_scan_rates(alsa_device_proxy * proxy, unsigned sample_rates[])
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ApplicationProxy.java 28 import java.net.Proxy;
32 * Proxy wrapper class so that we can determine application set
35 public final class ApplicationProxy extends Proxy {
36 private ApplicationProxy(Proxy proxy) {
37 super(proxy.type(), proxy.address());
40 public static ApplicationProxy create(Proxy proxy) {
41 return new ApplicationProxy(proxy);
    [all...]
  /system/media/alsa_utils/
alsa_device_proxy.c 42 int proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile* profile,
49 proxy->profile = profile;
56 proxy->alsa_config.format = config->format;
58 proxy->alsa_config.format = profile->default_config.format;
68 proxy->alsa_config.rate = config->rate;
70 proxy->alsa_config.rate = profile->default_config.rate;
80 proxy->alsa_config.channels = config->channels;
82 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels);
84 config->channels, proxy->alsa_config.channels);
91 proxy->alsa_config.period_count = profile->default_config.period_count
    [all...]
  /external/autotest/client/cros/
debugd_util.py 11 proxy = bus.get_object('org.chromium.debugd', '/org/chromium/debugd')
12 return dbus.Interface(proxy, dbus_interface='org.chromium.debugd')
  /external/webrtc/webrtc/base/
proxyinfo.cc 15 const char * ProxyToString(ProxyType proxy) {
17 return PROXY_NAMES[proxy];
proxydetect.h 21 // Auto-detect the proxy server. Returns true if a proxy is configured,
22 // although hostname may be empty if the proxy is not required for
26 rtc::ProxyInfo* proxy,
  /external/libmicrohttpd/src/examples/
mhd2spdy_http.c 20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side.
56 "Proxy-Connection",
87 struct Proxy *proxy = (struct Proxy *)cls; local
92 PRINT_INFO2("http_cb_response for %s", proxy->url);
94 if(proxy->spdy_error)
97 if(0 == proxy->http_body_size && (proxy->done || !proxy->spdy_active)
171 struct Proxy *proxy; local
380 struct Proxy *proxy; local
    [all...]
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeListenerProxyTest.java 31 PropertyChangeListenerProxy proxy; field in class:PropertyChangeListenerProxyTest
42 proxy = new PropertyChangeListenerProxy(name, listener);
46 proxy = new PropertyChangeListenerProxy(null, listener);
47 assertSame(listener, proxy.getListener());
48 assertNull(proxy.getPropertyName());
51 proxy.propertyChange(newevent);
53 proxy = new PropertyChangeListenerProxy(name, null);
54 assertSame(name, proxy.getPropertyName());
55 assertNull(proxy.getListener());
57 proxy.propertyChange(new PropertyChangeEvent(new Object(), "name"
82 PropertyChangeListenerProxy proxy = new PropertyChangeListenerProxy( local
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeMount/
platform_CryptohomeMount.py 19 proxy = cryptohome.CryptohomeProxy()
22 proxy.remove(test_user)
25 if not proxy.mount(test_user, test_password, create=True):
29 if not proxy.unmount(test_user):
33 if proxy.is_mounted(test_user):
38 if proxy.mount(test_user, incorrect_password):
41 if proxy.is_mounted(test_user):
45 if not proxy.remove(test_user):
  /external/curl/lib/
http_negotiate.h 28 CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
32 CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
http_ntlm.h 30 CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy,
34 CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);
curl_ntlm_wb.h 32 CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageToProcess.java 31 public final ImageProxy proxy; field in class:ImageToProcess
37 * @param proxy The underlying image to process.
43 * (0, 0)-(proxy.width, proxy.height) is a no-op.
45 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
47 this.proxy = proxy;
56 * @param proxy The underlying image to process.
60 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
62 this(proxy, imageRotation, metadata, new Rect(0, 0, proxy.getWidth(), proxy.getHeight()))
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/
CarAppFocusManagerEmbedded.java 48 OnAppFocusChangedListenerProxy proxy; local
50 proxy = mChangeListeners.get(listener);
51 if (proxy == null) {
52 proxy = new OnAppFocusChangedListenerProxy(this, listener);
53 mChangeListeners.put(listener, proxy);
57 mManager.addFocusListener(proxy, appType);
65 OnAppFocusChangedListenerProxy proxy; local
67 proxy = mChangeListeners.get(listener);
68 if (proxy == null) {
72 mManager.removeFocusListener(proxy, appType)
77 OnAppFocusChangedListenerProxy proxy; local
90 OnAppFocusOwnershipCallbackProxy proxy; local
110 OnAppFocusOwnershipCallbackProxy proxy; local
130 OnAppFocusOwnershipCallbackProxy proxy; local
145 OnAppFocusOwnershipCallbackProxy proxy; local
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyObject.java 16 package javassist.util.proxy;
19 * The interface implemented by proxy classes.
MethodFilter.java 16 package javassist.util.proxy;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 19 import java.net.Proxy;
25 * <li><strong>HTTP proxy:</strong> a proxy server may be explicitly
27 * proxy selector} is used. It may return multiple proxies to attempt.
29 * server or a proxy, opening a socket requires an IP address. The DNS
36 final Proxy proxy; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
43 if (proxy == null)
    [all...]
  /external/skia/src/gpu/
GrBitmapTextureMaker.cpp 32 sk_sp<GrTextureProxy> proxy; local
35 proxy = this->context()->resourceProvider()->findProxyByUniqueKey(fOriginalKey);
36 if (proxy) {
37 return proxy;
41 proxy = GrGenerateMipMapsAndUploadToTextureProxy(this->context(), fBitmap, dstColorSpace);
43 if (!proxy) {
44 proxy = GrUploadBitmapToTextureProxy(this->context()->resourceProvider(), fBitmap);
46 if (proxy && fOriginalKey.isValid()) {
47 this->context()->resourceProvider()->assignUniqueKeyToProxy(fOriginalKey, proxy.get());
51 return proxy;
    [all...]
GrPreFlushResourceProvider.cpp 20 // Because this is being allocated at the start of a flush we must ensure the proxy
23 sk_sp<GrSurfaceProxy> proxy = GrSurfaceProxy::MakeDeferred( local
29 if (!proxy->asRenderTargetProxy()) {
34 proxy->asRenderTargetProxy(),
39 proxy->setLastOpList(opList.get());
41 return fDrawingMgr->makeRenderTargetContext(std::move(proxy),
49 sk_sp<GrSurfaceProxy> proxy,
54 proxy->asRenderTargetProxy(),
59 proxy->setLastOpList(opList.get());
61 return fDrawingMgr->makeRenderTargetContext(std::move(proxy),
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeMigrateKey/
platform_CryptohomeMigrateKey.py 17 if not self.proxy.mount(user, old_pass, create=True):
19 if not self.proxy.unmount(user):
21 if not self.proxy.migrate(user, old_pass, new_pass):
23 if self.proxy.mount(user, old_pass):
25 if not self.proxy.mount(user, new_pass):
27 if not self.proxy.unmount(user):
29 self.proxy.remove(user)
35 if not self.proxy.mount(user, old_pass, create=True):
37 if not self.proxy.unmount(user):
39 if self.proxy.migrate(user, 'bad', new_pass)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxyTest.java 19 import java.net.Proxy;
29 * java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress)
32 // test HTTP type proxy
33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
34 assertEquals(Proxy.Type.HTTP, proxy.type())
52 Proxy proxy = null; local
111 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
170 Proxy proxy[] = { new Proxy(Proxy.Type.HTTP, address1), local
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 20 * @file proxy.c
159 struct Proxy
412 struct Proxy *proxy = (struct Proxy *)SPDY_get_cls_from_request(request); local
414 if(!store_in_buffer(buf, size, &proxy->received_body, &proxy->received_body_size))
420 proxy->receiving_done = !more;
426 if(proxy->is_curl_read_paused)
428 if(CURLE_OK != (ret = curl_easy_pause(proxy->curl_handle, CURLPAUSE_CONT))
447 struct Proxy *proxy = (struct Proxy *)cls; local
513 struct Proxy *proxy = (struct Proxy *)cls; local
531 struct Proxy *proxy = (struct Proxy *)userp; local
686 struct Proxy *proxy = (struct Proxy *)userp; local
731 struct Proxy *proxy = (struct Proxy *)userp; local
792 struct Proxy *proxy = (struct Proxy *)cls; local
846 struct Proxy *proxy; local
989 struct Proxy *proxy; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTDbg.stg 50 proxy = DebugEventSocketProxy(self, adaptor=<if(TREE_PARSER)>self.input.getTreeAdaptor()<else>self._adaptor<endif>,
52 self.setDebugListener(proxy)
53 self.adaptor.setDebugListener(proxy)
54 self.input.setDebugListener(proxy)
55 #self.set<inputStreamType>(Debug<inputStreamType>(self.input, proxy))
56 proxy.handshake()
  /libcore/ojluni/src/main/java/java/lang/reflect/
InvocationHandler.java 30 * the <i>invocation handler</i> of a proxy instance.
32 * <p>Each proxy instance has an associated invocation handler.
33 * When a method is invoked on a proxy instance, the method
38 * @see Proxy
44 * Processes a method invocation on a proxy instance and returns
46 * when a method is invoked on a proxy instance that it is
49 * @param proxy the proxy instance that the method was invoked on
52 * the interface method invoked on the proxy instance. The declaring
55 * proxy interface that the proxy class inherits the method through
    [all...]

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>