/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...] |
/external/python/cpython2/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, const 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, const 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...] |
/external/curl/docs/cmdline-opts/ |
proxy-digest.d | 1 Long: proxy-digest 2 Help: Use Digest authentication on the proxy 3 See-also: proxy proxy-anyauth proxy-basic 6 proxy. Use --digest for enabling HTTP Digest with a remote host.
|
proxy-key.d | 1 Long: proxy-key 2 Help: Private key for HTTPS proxy 5 Same as --key but used in HTTPS proxy context.
|
proxy-tlspassword.d | 1 Long: proxy-tlspassword 3 Help: TLS password for HTTPS proxy 6 Same as --tlspassword but used in HTTPS proxy context.
|
proxy-tlsuser.d | 1 Long: proxy-tlsuser 3 Help: TLS username for HTTPS proxy 6 Same as --tlsuser but used in HTTPS proxy context.
|
proxy-tlsv1.d | 1 Long: proxy-tlsv1 2 Help: Use TLSv1 for HTTPS proxy 5 Same as --tlsv1 but used in HTTPS proxy context.
|
proxy-insecure.d | 1 Long: proxy-insecure 2 Help: Do HTTPS proxy connections without verifying the proxy 5 Same as --insecure but used in HTTPS proxy context.
|
proxy-cacert.d | 1 Long: proxy-cacert 2 Help: CA certificate to verify peer against for proxy 5 See-also: proxy-capath cacert capath proxy 7 Same as --cacert but used in HTTPS proxy context.
|
proxy-capath.d | 1 Long: proxy-capath 2 Help: CA directory to verify peer against for proxy 5 See-also: proxy-cacert proxy capath 7 Same as --capath but used in HTTPS proxy context.
|
proxy-ntlm.d | 1 Long: proxy-ntlm 2 Help: Use NTLM authentication on the proxy 3 See-also: proxy-negotiate proxy-anyauth 6 proxy. Use --ntlm for enabling NTLM with a remote host.
|
proxy-cert-type.d | 1 Long: proxy-cert-type 4 Help: Client certificate type for HTTS proxy 6 Same as --cert-type but used in HTTPS proxy context.
|
proxy-cert.d | 1 Long: proxy-cert 3 Help: Set client certificate for proxy 6 Same as --cert but used in HTTPS proxy context.
|
proxy-ciphers.d | 1 Long: proxy-ciphers 3 Help: SSL ciphers to use for proxy 6 Same as --ciphers but used in HTTPS proxy context.
|
proxy-crlfile.d | 1 Long: proxy-crlfile 3 Help: Set a CRL list for proxy 6 Same as --crlfile but used in HTTPS proxy context.
|
proxy-key-type.d | 1 Long: proxy-key-type 3 Help: Private key file type for proxy 6 Same as --key-type but used in HTTPS proxy context.
|
/system/media/alsa_utils/ |
alsa_device_proxy.c | 44 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile* profile, 51 proxy->profile = profile; 58 proxy->alsa_config.format = config->format; 60 proxy->alsa_config.format = profile->default_config.format; 70 proxy->alsa_config.rate = config->rate; 72 proxy->alsa_config.rate = profile->default_config.rate; 82 proxy->alsa_config.channels = config->channels; 84 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels); 86 config->channels, proxy->alsa_config.channels); 93 proxy->alsa_config.period_count = profile->default_config.period_count [all...] |
/external/skia/tests/ |
ProxyRefTest.cpp | 53 GrTextureProxy* proxy, 58 REPORTER_ASSERT(reporter, proxy->getProxyRefCnt_TestOnly() == expectedProxyRefs); 59 REPORTER_ASSERT(reporter, proxy->getBackingRefCnt_TestOnly() == expectedBackingRefs); 60 REPORTER_ASSERT(reporter, proxy->getPendingReadCnt_TestOnly() == expectedNumReads); 61 REPORTER_ASSERT(reporter, proxy->getPendingWriteCnt_TestOnly() == expectedNumWrites); 63 SkASSERT(proxy->getProxyRefCnt_TestOnly() == expectedProxyRefs); 64 SkASSERT(proxy->getBackingRefCnt_TestOnly() == expectedBackingRefs); 65 SkASSERT(proxy->getPendingReadCnt_TestOnly() == expectedNumReads); 66 SkASSERT(proxy->getPendingWriteCnt_TestOnly() == expectedNumWrites); 99 sk_sp<GrTextureProxy> proxy((*make)(proxyProvider)) [all...] |
/external/skqp/tests/ |
ProxyRefTest.cpp | 53 GrTextureProxy* proxy, 58 REPORTER_ASSERT(reporter, proxy->getProxyRefCnt_TestOnly() == expectedProxyRefs); 59 REPORTER_ASSERT(reporter, proxy->getBackingRefCnt_TestOnly() == expectedBackingRefs); 60 REPORTER_ASSERT(reporter, proxy->getPendingReadCnt_TestOnly() == expectedNumReads); 61 REPORTER_ASSERT(reporter, proxy->getPendingWriteCnt_TestOnly() == expectedNumWrites); 63 SkASSERT(proxy->getProxyRefCnt_TestOnly() == expectedProxyRefs); 64 SkASSERT(proxy->getBackingRefCnt_TestOnly() == expectedBackingRefs); 65 SkASSERT(proxy->getPendingReadCnt_TestOnly() == expectedNumReads); 66 SkASSERT(proxy->getPendingWriteCnt_TestOnly() == expectedNumWrites); 99 sk_sp<GrTextureProxy> proxy((*make)(proxyProvider)) [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];
|
/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...] |