HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 226 - 250 of 820) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
84 __version__ = 'Python SMTP proxy version 0.2'
393 # Otherwise we'll forward it to the local proxy for disposition.
535 proxy = class_((options.localhost, options.localport), variable
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
DirectoryScannerTest.java 91 DirectoryScannerMXBean proxy,
115 makeNotificationEmitter(proxy,DirectoryScannerMXBean.class);
117 before = proxy.getState();
126 assertEquals(getObjectName(proxy),
164 final DirectoryScannerMXBean proxy = local
167 final File rootFile = new File(proxy.getRootDirectory());
198 final DirectoryScannerMXBean proxy = local
228 proxy.getState());
234 doTestOperation(proxy,op,
297 final DirectoryScannerMXBean proxy local
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
DirectoryScannerTest.java 91 DirectoryScannerMXBean proxy,
115 makeNotificationEmitter(proxy,DirectoryScannerMXBean.class);
117 before = proxy.getState();
126 assertEquals(getObjectName(proxy),
164 final DirectoryScannerMXBean proxy = local
167 final File rootFile = new File(proxy.getRootDirectory());
198 final DirectoryScannerMXBean proxy = local
228 proxy.getState());
234 doTestOperation(proxy,op,
297 final DirectoryScannerMXBean proxy local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
84 __version__ = 'Python SMTP proxy version 0.2'
393 # Otherwise we'll forward it to the local proxy for disposition.
535 proxy = class_((options.localhost, options.localport), variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
84 __version__ = 'Python SMTP proxy version 0.2'
393 # Otherwise we'll forward it to the local proxy for disposition.
535 proxy = class_((options.localhost, options.localport), variable
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
84 __version__ = 'Python SMTP proxy version 0.2'
393 # Otherwise we'll forward it to the local proxy for disposition.
535 proxy = class_((options.localhost, options.localport), variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
84 __version__ = 'Python SMTP proxy version 0.2'
393 # Otherwise we'll forward it to the local proxy for disposition.
535 proxy = class_((options.localhost, options.localport), variable
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactoryTest.java 54 NodeProxy proxy = m.create(cvi); local
57 assertNotNull(proxy);
58 assertSame(uiv, proxy.getNode());
61 INode inode = proxy;
75 NodeProxy proxy = m.create(uiv); local
78 assertNotNull(proxy);
79 assertSame(uiv, proxy.getNode());
82 INode inode = proxy;
100 // NodeProxies are cached. Creating the same one twice returns the same proxy.
112 // NodeProxies are cached. Creating the same one twice returns the same proxy
    [all...]
  /system/core/gatekeeperd/
gatekeeperd.cpp 410 android::sp<android::GateKeeperProxy> proxy = new android::GateKeeperProxy(); local
412 android::String16("android.service.gatekeeper.IGateKeeperService"), proxy);
  /system/tools/aidl/
type_java.cpp 685 int declLine, const Type* stub, const Type* proxy)
691 proxy_(proxy) {}
876 Type* proxy = new Type(this, b.GetPackage(), local
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
DownloadManagerHostTests.java 247 WifiLogSaver proxy = new WifiLogSaver(listener); local
248 super.run(proxy);
  /external/guice/lib/build/
cglib-3.1.jar 
  /art/test/044-proxy/src/
BasicTest.java 23 import java.lang.reflect.Proxy;
33 Object proxy = createProxy(proxyMe); local
35 if (!Proxy.isProxyClass(proxy.getClass()))
36 System.out.println("not a proxy class?");
37 if (Proxy.getInvocationHandler(proxy) == null)
38 System.out.println("ERROR: Proxy.getInvocationHandler is null");
41 Shapes shapes = (Shapes) proxy;
45 Quads quads = (Quads) proxy;
103 Object proxy = null; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 216 * two callback-less refs (ref and proxy). Used to determine if the
285 PyWeakReference *ref, *proxy; local
297 get_basic_refs(*list, &ref, &proxy);
308 proxy pointers we got back earlier may have been collected,
320 get_basic_refs(*list, &ref, &proxy);
321 prev = (proxy == NULL) ? ref : proxy;
390 proxy_checkref(PyWeakReference *proxy)
392 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
401 /* If a parameter is a proxy, check that it is still "live" and wrap it,
758 PyWeakReference *ref, *proxy; local
817 PyWeakReference *ref, *proxy; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 205 * two callback-less refs (ref and proxy). Used to determine if the
274 PyWeakReference *ref, *proxy; local
286 get_basic_refs(*list, &ref, &proxy);
297 proxy pointers we got back earlier may have been collected,
309 get_basic_refs(*list, &ref, &proxy);
310 prev = (proxy == NULL) ? ref : proxy;
379 proxy_checkref(PyWeakReference *proxy)
381 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
390 /* If a parameter is a proxy, check that it is still "live" and wrap it,
747 PyWeakReference *ref, *proxy; local
806 PyWeakReference *ref, *proxy; local
    [all...]
  /external/autotest/client/deps/fakemodem/src/
fakemodem.c 176 DBusGProxy *proxy; local
180 proxy = dbus_g_proxy_new_for_name (bus,
185 if (!dbus_g_proxy_call (proxy, "RequestName", &err,
195 g_object_unref (proxy);
196 proxy = NULL;
202 g_object_unref (proxy);
203 proxy = NULL;
205 dbus_g_proxy_add_signal (proxy, "NameOwnerChanged",
210 return proxy;
217 DBusGProxy *proxy; local
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
interface_ptr_unittest.cc 314 math::CalculatorPtr proxy; local
315 MathCalculatorImpl calc_impl(GetProxy(&proxy));
317 MathCalculatorUI calculator_ui(std::move(proxy));
343 math::CalculatorPtr proxy; local
344 MathCalculatorImpl calc_impl(GetProxy(&proxy));
348 proxy.set_connection_error_handler(
352 MathCalculatorUI calculator_ui(std::move(proxy));
380 math::CalculatorPtr proxy; local
381 MathCalculatorImpl calc_impl(GetProxy(&proxy));
386 new SelfDestructingMathCalculatorUI(std::move(proxy));
395 math::CalculatorPtr proxy; local
410 sample::ServicePtr proxy; local
720 sample::PingTestPtr proxy; local
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/creation/bytebuddy/
InlineByteBuddyMockMakerTest.java 46 FinalClass proxy = mockMaker.createMock(settings, new MockHandlerImpl<FinalClass>(settings)); local
47 assertThat(proxy.foo()).isEqualTo("bar");
53 Pattern proxy = mockMaker.createMock(settings, new MockHandlerImpl<Pattern>(settings)); local
54 assertThat(proxy.pattern()).isEqualTo("bar");
60 FinalMethodAbstractType proxy = mockMaker.createMock(settings, new MockHandlerImpl<FinalMethodAbstractType>(settings)); local
61 assertThat(proxy.foo()).isEqualTo("bar");
62 assertThat(proxy.bar()).isEqualTo("bar");
68 FinalMethod proxy = mockMaker.createMock(settings, new MockHandlerImpl<FinalMethod>(settings)); local
69 assertThat(proxy.foo()).isEqualTo("bar");
70 assertThat(((SampleInterface) proxy).bar()).isEqualTo("bar")
76 GenericSubClass proxy = mockMaker.createMock(settings, new MockHandlerImpl<GenericSubClass>(settings)); local
83 HashMap proxy = mockMaker.createMock(settings, new MockHandlerImpl<HashMap>(settings)); local
116 EnumClass proxy = mockMaker.createMock(settings, new MockHandlerImpl<EnumClass>(settings)); local
159 Set<?> proxy = mockMaker.createMock(mockSettings, new MockHandlerImpl<Set>(mockSettings)); local
169 Set<?> proxy = mockMaker.createMock(mockSettings, new MockHandlerImpl<Set>(mockSettings)); local
217 NonPackagePrivateSubClass proxy = mockMaker.createMock(settings, new MockHandlerImpl<NonPackagePrivateSubClass>(settings)); local
283 Object proxy = mockMaker.createMock(settings, new MockHandlerImpl(settings)); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
RealConnection.java 44 import java.net.Proxy;
98 Proxy proxy = route.getProxy(); local
109 rawSocket = proxy.type() == Proxy.Type.DIRECT || proxy.type() == Proxy.Type.HTTP
111 : new Socket(proxy);
255 * To make an HTTPS connection over an HTTP proxy, send an unencrypted
256 * CONNECT request to create the proxy connection. This may need to b
    [all...]
  /external/perfetto/src/ipc/
client_impl_unittest.cc 223 std::unique_ptr<FakeProxy> proxy(new FakeProxy("FakeSvc", &proxy_events_));
225 // Bind |proxy| to the fake host.
226 cli_->BindService(proxy->GetWeakPtr());
251 proxy->BeginInvoke("FakeMethod1", req, std::move(deferred_reply));
262 proxy->BeginInvoke("InvalidMethod", empty_req, std::move(deferred_reply2));
272 std::unique_ptr<FakeProxy> proxy(new FakeProxy("FakeSvc", &proxy_events_));
274 // Bind |proxy| to the fake host.
275 cli_->BindService(proxy->GetWeakPtr());
291 proxy->BeginInvoke("FakeMethod1", RequestProto(), std::move(no_callback));
302 // Create and bind |proxy| to the fake host
427 std::unique_ptr<FakeProxy> proxy[3]; local
    [all...]
  /external/python/cpython2/Objects/
weakrefobject.c 216 * two callback-less refs (ref and proxy). Used to determine if the
284 PyWeakReference *ref, *proxy; local
296 get_basic_refs(*list, &ref, &proxy);
307 proxy pointers we got back earlier may have been collected,
319 get_basic_refs(*list, &ref, &proxy);
320 prev = (proxy == NULL) ? ref : proxy;
392 proxy_checkref(PyWeakReference *proxy)
394 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
403 /* If a parameter is a proxy, check that it is still "live" and wrap it
760 PyWeakReference *ref, *proxy; local
819 PyWeakReference *ref, *proxy; local
    [all...]
  /external/python/cpython3/Lib/
smtpd.py 2 """An RFC 5321 smtp proxy with optional RFC 1870 and RFC 6531 extensions.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
30 Enable the SMTPUTF8 extension and behave as an RFC 6531 smtp proxy.
98 __version__ = 'Python SMTP proxy version 0.3'
793 # Otherwise we'll forward it to the local proxy for disposition.
947 proxy = class_((options.localhost, options.localport), variable
    [all...]
  /external/python/cpython3/Objects/
weakrefobject.c 215 * two callback-less refs (ref and proxy). Used to determine if the
283 PyWeakReference *ref, *proxy; local
295 get_basic_refs(*list, &ref, &proxy);
306 proxy pointers we got back earlier may have been collected,
318 get_basic_refs(*list, &ref, &proxy);
319 prev = (proxy == NULL) ? ref : proxy;
396 proxy_checkref(PyWeakReference *proxy)
398 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
407 /* If a parameter is a proxy, check that it is still "live" and wrap it
738 PyWeakReference *ref, *proxy; local
797 PyWeakReference *ref, *proxy; local
    [all...]
  /external/skia/src/gpu/ops/
GrLatticeOp.cpp 35 static sk_sp<GrGeometryProcessor> Make(sk_sp<GrTextureProxy> proxy,
38 return sk_sp<GrGeometryProcessor>(new LatticeGP(std::move(proxy), std::move(csxf), filter));
97 LatticeGP(sk_sp<GrTextureProxy> proxy, sk_sp<GrColorSpaceXform> csxf,
101 fSampler.reset(std::move(proxy), filter);
129 sk_sp<GrTextureProxy> proxy,
133 return Helper::FactoryHelper<NonAALatticeOp>(std::move(paint), viewMatrix, std::move(proxy),
139 sk_sp<GrTextureProxy> proxy, sk_sp<GrColorSpaceXform> colorSpaceXform,
144 , fProxy(std::move(proxy))
313 sk_sp<GrTextureProxy> proxy,
317 return NonAALatticeOp::Make(std::move(paint), viewMatrix, std::move(proxy),
377 auto proxy = context->contextPriv().proxyProvider()->createProxy( local
    [all...]
  /external/skia/src/image/
SkImage_Gpu.cpp 45 sk_sp<GrTextureProxy> proxy,
47 : INHERITED(proxy->worstCaseWidth(), proxy->worstCaseHeight(), uniqueID)
49 , fProxy(std::move(proxy))
167 // We failed to instantiate the lazy proxy. Thus we return 0 here which is considered
192 GrTextureProxy* proxy = this->peekProxy(); local
193 if (!proxy) {
197 if (!proxy->instantiate(fContext->contextPriv().resourceProvider())) {
201 return proxy->priv().peekTexture();
308 sk_sp<GrTextureProxy> proxy = proxyProvider->createWrappedTextureProxy local
637 sk_sp<GrTextureProxy> proxy; local
    [all...]

Completed in 1837 milliseconds

1 2 3 4 5 6 7 8 91011>>