HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 176 - 200 of 420) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar 
org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jar 
  /external/ipsec-tools/src/racoon/
pfkey.c 846 int proxy = 0; local
850 proxy = iph2->ph1->rmconf->support_proxy;
854 proxy = 1;
858 if (proxy && iph2->src_id && iph2->dst_id &&
1031 int proxy = 0; local
1040 proxy = iph2->ph1->rmconf->support_proxy;
1042 proxy = 1;
1052 if (proxy && iph2->src_id && iph2->dst_id &&
1316 int proxy = 0; local
1327 proxy = iph2->ph1->rmconf->support_proxy
    [all...]
  /external/libxml2/
nanoftp.c 147 static char *proxy = NULL; /* the proxy name if any */ variable
148 static int proxyPort = 0; /* the proxy port if any */
149 static char *proxyUser = NULL; /* user for proxy authentication */
150 static char *proxyPasswd = NULL;/* passwd for proxy authentication */
183 * Currently it just checks for proxy informations,
229 * Cleanup the FTP protocol layer. This cleanup proxy informations.
234 if (proxy != NULL) {
235 xmlFree(proxy);
236 proxy = NULL
    [all...]
nanohttp.c 152 char *authHeader; /* contents of {WWW,Proxy}-Authenticate header */
162 static char *proxy = NULL; /* the proxy name if any */ variable
163 static int proxyPort; /* the proxy port if any */
209 * Currently it just checks for proxy informations
227 if (proxy == NULL) {
255 if (proxy != NULL) {
256 xmlFree(proxy);
257 proxy = NULL;
335 * @URL: The proxy URL used to initialize the proxy contex
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 144 /** The proxy authentication handler. */
223 ("Proxy authentication handler may not be null.");
422 HttpHost proxy = route.getProxyHost(); local
428 proxy);
670 // The most simple example for this case is a proxy chain
676 this.log.debug("Tunnel to proxy created.");
708 * The connection must be established to the (last) proxy.
709 * A CONNECT request for tunnelling through the proxy will
729 HttpHost proxy = route.getProxyHost(); local
749 proxy);
1031 HttpHost proxy = route.getProxyHost(); local
    [all...]
  /external/v8/src/
ast.cc 548 return proxy()->var()->IsStackAllocated();
574 VariableProxy* proxy = expression()->AsVariableProxy(); local
575 if (proxy != NULL) {
576 if (proxy->var()->is_possibly_eval(isolate)) {
578 } else if (proxy->var()->IsUnallocated()) {
580 } else if (proxy->var()->IsLookupSlot()) {
    [all...]
scopes.cc 418 if (function_ != NULL && function_->proxy()->raw_name() == name) {
419 return function_->proxy()->var();
428 VariableProxy* proxy = factory->NewVariableProxy(var); local
430 proxy, mode, this, RelocInfo::kNoPosition);
550 const AstRawString* name = decl->proxy()->raw_name();
874 PrintName(function_->proxy()->raw_name());
900 PrintVar(n1, function_->proxy()->var());
963 Variable* Scope::LookupRecursive(VariableProxy* proxy,
975 Variable* var = LookupLocal(proxy->raw_name());
989 var = LookupFunctionVar(proxy->raw_name(), factory)
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 936 sp<BufferQueue::ProxyConsumerListener> proxy = local
938 status_t err = consumer->consumerConnect(proxy, false);
    [all...]
  /frameworks/base/core/java/android/net/
LinkProperties.java 42 * multiple dns servers but only one http proxy and one
520 * @param proxy A {@link ProxyInfo} defining the HTTP Proxy to use on this link.
523 public void setHttpProxy(ProxyInfo proxy) {
524 mHttpProxy = proxy;
635 String proxy = (mHttpProxy == null ? "" : " HttpProxy: " + mHttpProxy.toString() + " "); local
646 + tcpBuffSizes + proxy + stacked + "}";
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 53 /** Timeout to connect a profile proxy in ms. */
314 public void onServiceConnected(int profile, BluetoothProfile proxy) {
318 mA2dp = (BluetoothA2dp) proxy;
321 mHeadset = (BluetoothHeadset) proxy;
324 mInput = (BluetoothInputDevice) proxy;
327 mPan = (BluetoothPan) proxy;
936 BluetoothProfile proxy = connectProxy(adapter, profile); local
1017 BluetoothProfile proxy = connectProxy(adapter, profile); local
    [all...]
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 725 // All proxy methods take an error parameter
806 // == the method in the proxy class =====================================
955 // the proxy class
958 RpcProxyClass* proxy = new RpcProxyClass(iface, interfaceType); local
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsManager.java 888 ImsRegistrationListenerProxy proxy = local
    [all...]
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 89 alsa_device_proxy proxy; /* state of the stream */ member in struct:stream_out
114 alsa_device_proxy proxy; /* state of the stream */ member in struct:stream_in
242 uint32_t rate = proxy_get_sample_rate(&((struct stream_out*)stream)->proxy);
256 proxy_get_period_size(&out->proxy) * audio_stream_out_frame_size(&(out->stream));
272 alsa_device_proxy * proxy = &((struct stream_out*)stream)->proxy; local
273 audio_format_t format = audio_format_from_pcm_format(proxy_get_format(proxy));
289 proxy_close(&out->proxy);
362 alsa_device_proxy * proxy = &((struct stream_out*)stream)->proxy; local
395 alsa_device_proxy* proxy = &out->proxy; local
448 const alsa_device_proxy *proxy = &out->proxy; local
657 alsa_device_proxy *proxy = &((struct stream_in*)stream)->proxy; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageBackend.java 170 * @param imageProcessorProxyListener iamge proxy listener to be used
194 * @return listener proxy that handles events messaging for this object.
397 "Proxy Listener Map Size = " + mProxyListener.getMapSize() + "\n" +
398 "Proxy Listener = " + mProxyListener.getNumRegisteredListeners() + "\n" +
543 getProxyListener().registerListener(imageProcessorListener.get(), img.proxy);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /frameworks/base/services/core/java/com/android/server/
BluetoothManagerService.java 711 IBluetoothProfileServiceConnection proxy) {
740 addProxyMsg.obj = proxy;
747 IBluetoothProfileServiceConnection proxy) {
753 psc.removeProxy(proxy);
828 private void addProxy(IBluetoothProfileServiceConnection proxy) {
829 mProxies.register(proxy);
832 proxy.onServiceConnected(mClassName, mService);
834 Log.e(TAG, "Unable to connect to proxy", e);
1267 IBluetoothProfileServiceConnection proxy = local
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-settings-3.2.1.jar 
wagon-provider-api-2.6.jar 
  /external/robolectric/lib/test/
mockito-core-1.8.5.jar 
  /external/vogar/lib/
mockito-all-1.8.5.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/1.9.5/
mockito-core-1.9.5.jar 

Completed in 289 milliseconds

1 2 3 4 5 6 78 91011>>