/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
H A D | ProxyTest.java | 19 import java.net.Proxy; 29 * java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress) 32 // test HTTP type proxy in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() local 34 assertEquals(Proxy.Type.HTTP, proxy.type()); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 35 assertEquals(address, proxy.address()); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 37 // test SOCKS type proxy in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 38 proxy = new Proxy(Proxy.Type.SOCKS, address); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 39 assertEquals(Proxy.Type.SOCKS, proxy.type()); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() 40 assertEquals(address, proxy.address()); in test_ConstructorLjava_net_ProxyLjava_net_SocketAddress_Normal() [all …]
|
H A D | ProxySelectorTest.java | 21 import java.net.Proxy; 112 // no proxy, return a proxyList only contains NO_PROXY in test_selectLjava_net_URI_SelectExact() 114 assertProxyEquals(proxyList, Proxy.NO_PROXY); in test_selectLjava_net_URI_SelectExact() 116 // set http proxy in test_selectLjava_net_URI_SelectExact() 119 // set https proxy in test_selectLjava_net_URI_SelectExact() 122 // set ftp proxy in test_selectLjava_net_URI_SelectExact() 125 // set socks proxy in test_selectLjava_net_URI_SelectExact() 130 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTP_PROXY_HOST, HTTP_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() 133 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTPS_PROXY_HOST, HTTPS_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() 136 assertProxyEquals(proxyList, Proxy.Type.HTTP, FTP_PROXY_HOST, FTP_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() [all …]
|
/aosp_15_r20/external/cronet/net/docs/ |
H A D | proxy.md | 1 # Proxy support in Chrome 3 This document establishes basic proxy terminology and describes Chrome-specific 4 proxy behaviors. 8 ## Proxy server identifiers 10 A proxy server is an intermediary used for network requests. A proxy server can 11 be described by its address, along with the proxy scheme that should be used to 17 The PAC format is how one names a proxy server in [Proxy 20 * `PROXY foo:2138` 33 See the [Proxy server schemes](#Proxy-server-schemes) section for details on 37 formatted proxy server identifiers. However outside of Chrome, proxy servers [all …]
|
/aosp_15_r20/external/wayland/src/ |
H A D | wayland-client.c | 83 struct wl_proxy proxy; member 98 /* id of the proxy that caused the error. There's no warranty 99 * that the proxy is still valid. It's up to client how it will 144 const struct wl_proxy *proxy; in adjust_closure_args_for_logging() local 156 proxy = (struct wl_proxy *)closure->args[i].o; in adjust_closure_args_for_logging() 157 closure->args[i].n = proxy ? proxy->object.id : 0; in adjust_closure_args_for_logging() 178 return "dead proxy on dispatch"; in get_discarded_reason_str() 192 * \param proxy proxy for the message 198 closure_log(struct wl_closure *closure, struct wl_proxy *proxy, bool send, in closure_log() argument 201 struct wl_display *display = proxy->display; in closure_log() [all …]
|
/aosp_15_r20/system/media/alsa_utils/ |
H A D | alsa_device_proxy.c | 51 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile* profile, in proxy_prepare() argument 58 proxy->profile = profile; in proxy_prepare() 65 proxy->alsa_config.format = config->format; in proxy_prepare() 69 proxy->alsa_config.format = profile->default_config.format; in proxy_prepare() 79 proxy->alsa_config.rate = config->rate; in proxy_prepare() 83 proxy->alsa_config.rate = profile->default_config.rate; in proxy_prepare() 93 proxy->alsa_config.channels = config->channels; in proxy_prepare() 97 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels); in proxy_prepare() 99 config->channels, proxy->alsa_config.channels); in proxy_prepare() 106 proxy->alsa_config.period_count = profile->default_config.period_count; in proxy_prepare() [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | apigee_v1.organizations.apis.html | 97 …proxy. The API proxy created will not be accessible at runtime until it is deployed to an environm… 100 … class="firstline">Deletes an API proxy and all associated endpoints, policies, resources, and rev… 103 <p class="firstline">Gets an API proxy including a list of existing revisions.</p> 106 …e names returned correspond to the names defined in the configuration files for each API proxy.</p> 109 <p class="firstline">Updates an existing API proxy.</p> 118 …proxy. The API proxy created will not be accessible at runtime until it is deployed to an environm… 135 …proxy configuration bundle. Set this parameter to one of the following values: * `import` to impor… 136 name: string, Name of the API proxy. Restrict the characters used to: A-Za-z0-9._- 146 { # API proxy revision. 147 "basepaths": [ # Base URL of the API proxy. [all …]
|
D | apigee_v1.organizations.apis.revisions.html | 87 …irstline">Deletes an API proxy revision and all policies, resources, endpoints, and revisions asso… 90 …proxy revision. To download the API proxy configuration bundle for the specified revision as a zip… 93 …proxy revision by uploading the API proxy configuration bundle as a zip file from your local machi… 102 …<pre>Deletes an API proxy revision and all policies, resources, endpoints, and revisions associate… 105 …name: string, Required. API proxy revision in the following format: `organizations/{org}/apis/{api… 114 { # API proxy revision. 115 "basepaths": [ # Base URL of the API proxy. 118 …proxy configuration schema. Currently, only 4.0 is supported. # Version of the API proxy configura… 119 "majorVersion": 42, # Major version of the API proxy configuration schema. 120 "minorVersion": 42, # Minor version of the API proxy configuration schema. [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | Proxy.java | 56 * {@code Proxy} provides static methods for creating dynamic proxy 58 * dynamic proxy classes created by those methods. 60 * <p>To create a proxy for some interface {@code Foo}: 63 * Class<?> proxyClass = Proxy.getProxyClass(Foo.class.getClassLoader(), Foo.class); 69 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(), 74 * <p>A <i>dynamic proxy class</i> (simply referred to as a <i>proxy 79 * A <i>proxy interface</i> is such an interface that is implemented 80 * by a proxy class. 82 * A <i>proxy instance</i> is an instance of a proxy class. 84 * Each proxy instance has an associated <i>invocation handler</i> [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/reflect/ |
H A D | Proxy.java | 56 * {@code Proxy} provides static methods for creating dynamic proxy 58 * dynamic proxy classes created by those methods. 60 * <p>To create a proxy for some interface {@code Foo}: 63 * Class<?> proxyClass = Proxy.getProxyClass(Foo.class.getClassLoader(), Foo.class); 69 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(), 74 * <p>A <i>dynamic proxy class</i> (simply referred to as a <i>proxy 79 * A <i>proxy interface</i> is such an interface that is implemented 80 * by a proxy class. 82 * A <i>proxy instance</i> is an instance of a proxy class. 84 * Each proxy instance has an associated <i>invocation handler</i> [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/4/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | Proxy.java | 56 * {@code Proxy} provides static methods for creating dynamic proxy 58 * dynamic proxy classes created by those methods. 60 * <p>To create a proxy for some interface {@code Foo}: 63 * Class<?> proxyClass = Proxy.getProxyClass(Foo.class.getClassLoader(), Foo.class); 69 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(), 74 * <p>A <i>dynamic proxy class</i> (simply referred to as a <i>proxy 79 * A <i>proxy interface</i> is such an interface that is implemented 80 * by a proxy class. 82 * A <i>proxy instance</i> is an instance of a proxy class. 84 * Each proxy instance has an associated <i>invocation handler</i> [all …]
|
/aosp_15_r20/external/libbrillo/brillo/glib/ |
H A D | dbus.h | 68 friend class Proxy; variable 82 // \brief Proxy manages the ref-count for a ::DBusGProxy*. 84 // Proxy has reference semantics and represents a connection to on object on 85 // the bus. A proxy object is constructed with a connection to a bus, a name 89 class BRILLO_EXPORT Proxy { 93 Proxy(); 97 Proxy(const BusConnection& connection, 103 // Equivalent to Proxy(connection, name, path, interface, false). 104 Proxy(const BusConnection& connection, 109 // Creates a peer proxy using dbus_g_proxy_new_for_peer. [all …]
|
/aosp_15_r20/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
D | ProxyTracker.java | 33 import android.net.Proxy; 51 * A class to handle proxy for ConnectivityService. 60 // The Proxy.EXTRA_PROXY_INFO constant is not visible to this code because android.net.Proxy 69 // The global proxy is the proxy that is set device-wide, overriding any network-specific 70 // proxy. Note however that proxies are hints ; the system does not enforce their use. Hence 75 // The default proxy is the proxy that applies to no particular network if the global proxy 79 // when PacProxyService resolves the proxy. 83 // Whether the default proxy is enabled. 99 public void onPacProxyInstalled(@Nullable Network network, @NonNull ProxyInfo proxy) { in onPacProxyInstalled() argument 100 Log.i(TAG, "PAC proxy installed on network " + network + " : " + proxy); in onPacProxyInstalled() [all …]
|
/aosp_15_r20/external/cronet/net/proxy_resolution/ |
H A D | proxy_list_unittest.cc | 31 { "PROXY foopy:10", in TEST() 32 "PROXY foopy:10", in TEST() 37 { "PROXY foopy1 ; proxy foopy2;\t DIRECT", in TEST() 38 "PROXY foopy1:80;PROXY foopy2:80;DIRECT", in TEST() 40 { "proxy foopy1 ; SOCKS foopy2", in TEST() 41 "PROXY foopy1:80;SOCKS foopy2:1080", in TEST() 44 { "DIRECT ; proxy foopy1 ; DIRECT ; SOCKS5 foopy2;DIRECT ", in TEST() 45 "DIRECT;PROXY foopy1:80;DIRECT;SOCKS5 foopy2:1080;DIRECT", in TEST() 48 { "DIRECT ; proxy foopy1:80; DIRECT ; DIRECT", in TEST() 49 "DIRECT;PROXY foopy1:80;DIRECT;DIRECT", in TEST() [all …]
|
/aosp_15_r20/external/pigweed/pw_bluetooth_proxy/ |
H A D | proxy_host_test.cc | 37 namespace pw::bluetooth::proxy { namespace 61 // Return a populated H4 command buffer of a type that proxy host doesn't 83 // Send an LE_Read_Buffer_Size (V2) CommandComplete event to `proxy` to request 85 Status SendLeReadBufferResponseFromController(ProxyHost& proxy, in SendLeReadBufferResponseFromController() argument 101 proxy.HandleH4HciFromController(std::move(h4_packet)); in SendLeReadBufferResponseFromController() 105 Status SendReadBufferResponseFromController(ProxyHost& proxy, in SendReadBufferResponseFromController() argument 120 proxy.HandleH4HciFromController(std::move(h4_packet)); in SendReadBufferResponseFromController() 124 // Send a Number_of_Completed_Packets event to `proxy` that reports each 128 ProxyHost& proxy, in SendNumberOfCompletedPackets() argument 152 proxy.HandleH4HciFromController(std::move(nocp_event)); in SendNumberOfCompletedPackets() [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/net/ |
H A D | ProxySelectorTest.java | 20 import java.net.Proxy; 66 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(ftpUri)); in testNoProxySystemProperty() 67 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(httpUri)); in testNoProxySystemProperty() 68 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(httpsUri)); in testNoProxySystemProperty() 69 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(socketUri)); in testNoProxySystemProperty() 70 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(otherUri)); in testNoProxySystemProperty() 79 assertEquals(Arrays.asList(new Proxy(Proxy.Type.HTTP, createUnresolved("a", 80))), in testProxyHostOnly() 81 assertEquals(Arrays.asList(new Proxy(Proxy.Type.HTTP, createUnresolved("b", 80))), in testProxyHostOnly() 83 assertEquals(Arrays.asList(new Proxy(Proxy.Type.HTTP, createUnresolved("c", 443))), in testProxyHostOnly() 85 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(otherUri)); in testProxyHostOnly() [all …]
|
/aosp_15_r20/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | ProxyManager.java | 63 * Manages proxy connections. 66 * proxy connection will belong to a separate user state. 91 // Each display id entry in a SparseArray represents a proxy a11y user. 161 Slog.v(LOG_TAG, "Register proxy for display id: " + displayId); in registerProxy() 170 // Set a default AccessibilityServiceInfo that is used before the proxy's info is in registerProxy() 171 // populated. A proxy has the touch exploration and window capabilities. in registerProxy() 244 * Unregister the proxy based on display id. 251 * Clears all proxy connections belonging to {@code deviceId}. 257 final ProxyAccessibilityServiceConnection proxy = in clearConnections() local 259 if (proxy != null && proxy.getDeviceId() == deviceId) { in clearConnections() [all …]
|
/aosp_15_r20/external/python/bumble/docs/images/logo_framed.vectornator/ |
D | UndoHistory.json | 1 …proxy","methodArguments":[{"argumentTypeRawValue":4,"argumentGID":6}],"methodSignature":"removeObj…
|
/aosp_15_r20/packages/modules/Bluetooth/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 1091 Landroid/bluetooth/IBluetooth$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 1092 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelBondProcess(Landroid/bluetooth/BluetoothDevice;)Z 1093 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelDiscovery()Z 1094 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBond(Landroid/bluetooth/BluetoothDevice;I)Z 1095 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBondOutOfBand(Landroid/bluetooth/BluetoothDevice;I… 1096 Landroid/bluetooth/IBluetooth$Stub$Proxy;->disable()Z 1097 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enable()Z 1098 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enableNoAutoConnect()Z 1099 Landroid/bluetooth/IBluetooth$Stub$Proxy;->factoryReset()Z 1100 Landroid/bluetooth/IBluetooth$Stub$Proxy;->fetchRemoteUuids(Landroid/bluetooth/BluetoothDevice;)Z [all …]
|
/aosp_15_r20/prebuilts/module_sdk/Bluetooth/13/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 1091 Landroid/bluetooth/IBluetooth$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 1092 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelBondProcess(Landroid/bluetooth/BluetoothDevice;)Z 1093 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelDiscovery()Z 1094 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBond(Landroid/bluetooth/BluetoothDevice;I)Z 1095 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBondOutOfBand(Landroid/bluetooth/BluetoothDevice;I… 1096 Landroid/bluetooth/IBluetooth$Stub$Proxy;->disable()Z 1097 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enable()Z 1098 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enableNoAutoConnect()Z 1099 Landroid/bluetooth/IBluetooth$Stub$Proxy;->factoryReset()Z 1100 Landroid/bluetooth/IBluetooth$Stub$Proxy;->fetchRemoteUuids(Landroid/bluetooth/BluetoothDevice;)Z [all …]
|
/aosp_15_r20/prebuilts/module_sdk/Bluetooth/current/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 1091 Landroid/bluetooth/IBluetooth$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 1092 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelBondProcess(Landroid/bluetooth/BluetoothDevice;)Z 1093 Landroid/bluetooth/IBluetooth$Stub$Proxy;->cancelDiscovery()Z 1094 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBond(Landroid/bluetooth/BluetoothDevice;I)Z 1095 Landroid/bluetooth/IBluetooth$Stub$Proxy;->createBondOutOfBand(Landroid/bluetooth/BluetoothDevice;I… 1096 Landroid/bluetooth/IBluetooth$Stub$Proxy;->disable()Z 1097 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enable()Z 1098 Landroid/bluetooth/IBluetooth$Stub$Proxy;->enableNoAutoConnect()Z 1099 Landroid/bluetooth/IBluetooth$Stub$Proxy;->factoryReset()Z 1100 Landroid/bluetooth/IBluetooth$Stub$Proxy;->fetchRemoteUuids(Landroid/bluetooth/BluetoothDevice;)Z [all …]
|
/aosp_15_r20/external/grpc-grpc/test/core/end2end/fixtures/ |
H A D | proxy.cc | 19 #include "test/core/end2end/fixtures/proxy.h" 75 grpc_end2end_proxy* proxy; member 94 static void request_call(grpc_end2end_proxy* proxy); 102 grpc_end2end_proxy* proxy = new grpc_end2end_proxy(); in grpc_end2end_proxy_create() local 104 proxy->proxy_port = grpc_core::JoinHostPort("localhost", proxy_port); in grpc_end2end_proxy_create() 105 proxy->server_port = grpc_core::JoinHostPort("localhost", server_port); in grpc_end2end_proxy_create() 107 gpr_log(GPR_DEBUG, "PROXY ADDR:%s BACKEND:%s", proxy->proxy_port.c_str(), in grpc_end2end_proxy_create() 108 proxy->server_port.c_str()); in grpc_end2end_proxy_create() 110 proxy->cq = grpc_completion_queue_create_for_next(nullptr); in grpc_end2end_proxy_create() 111 proxy->server = def->create_server(proxy->proxy_port.c_str(), server_args); in grpc_end2end_proxy_create() [all …]
|
/aosp_15_r20/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-unsupported.txt | 2 Landroid/accounts/IAccountAuthenticator$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 3 Landroid/accounts/IAccountAuthenticator$Stub$Proxy;->mRemote:Landroid/os/IBinder; 6 Landroid/accounts/IAccountAuthenticatorResponse$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 7 Landroid/accounts/IAccountAuthenticatorResponse$Stub$Proxy;->mRemote:Landroid/os/IBinder; 10 Landroid/accounts/IAccountManager$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 13 Landroid/accounts/IAccountManagerResponse$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 14 Landroid/accounts/IAccountManagerResponse$Stub$Proxy;->mRemote:Landroid/os/IBinder; 24 Landroid/app/IActivityManager$Stub$Proxy;->getConfiguration()Landroid/content/res/Configuration; 25 Landroid/app/IActivityManager$Stub$Proxy;->getLaunchedFromUid(Landroid/os/IBinder;)I 26 Landroid/app/IActivityManager$Stub$Proxy;->getProcessLimit()I [all …]
|
/aosp_15_r20/external/python/bumble/docs/images/logo.vectornator/ |
D | UndoHistory.json | 1 …proxy","methodArguments":[{"argumentTypeRawValue":4,"argumentGID":6}],"methodSignature":"removeObj…
|
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
H A D | ProxyTest.java | 27 import java.lang.reflect.Proxy; 55 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument 61 class ProxyCoonstructorTest extends Proxy { 68 * java.lang.reflect.Proxy#getProxyClass(java.lang.ClassLoader, 72 Class proxy = Proxy.getProxyClass(Support_Proxy_I1.class in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() local 75 assertTrue("Did not create a Proxy subclass ", in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() 76 proxy.getSuperclass() == Proxy.class); in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() 77 assertTrue("Does not believe its a Proxy class ", Proxy in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() 78 .isProxyClass(proxy)); in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() 80 assertTrue("Does not believe it's a Proxy class ", Proxy in test_getProxyClassLjava_lang_ClassLoader$Ljava_lang_Class() [all …]
|
/aosp_15_r20/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/stock/ |
H A D | ProxyBuilderTest.java | 96 ExampleClass proxy = proxyFor(ExampleClass.class).build(); in testExampleOperation() local 97 assertEquals("expected", proxy.exampleMethod()); in testExampleOperation() 104 ExampleOperationClass proxy = proxyFor(ExampleOperationClass.class).build(); in testExampleOperation_DexMakerCaching() local 106 assertEquals("expected", proxy.exampleMethod()); in testExampleOperation_DexMakerCaching() 111 proxy = proxyFor(ExampleOperationClass.class).build(); in testExampleOperation_DexMakerCaching() 113 assertEquals("expected", proxy.exampleMethod()); in testExampleOperation_DexMakerCaching() 130 ConstructorTakesArguments proxy = proxyFor(ConstructorTakesArguments.class) in testConstruction_SucceedsIfCorrectArgumentsProvided() local 134 assertEquals("hello", proxy.argument); in testConstruction_SucceedsIfCorrectArgumentsProvided() 135 proxy.method(); in testConstruction_SucceedsIfCorrectArgumentsProvided() 179 HasFinalMethod proxy = proxyFor(HasFinalMethod.class).build(); in testCanProxyClassesWithFinalMethods_WillNotCallTheFinalMethod() local [all …]
|