Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 15 of 15) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DStubMediaRoute2ProviderService.java156 public void setProxy(@Nullable Proxy proxy) { in setProxy() argument
157 mProxy = proxy; in setProxy()
212 Proxy proxy = mProxy; in onCreateSession() local
213 if (doesProxyOverridesMethod(proxy, "onCreateSession")) { in onCreateSession()
214 proxy.onCreateSession(requestId, packageName, routeId, sessionHints); in onCreateSession()
249 Proxy proxy = mProxy; in onReleaseSession() local
250 if (doesProxyOverridesMethod(proxy, "onReleaseSession")) { in onReleaseSession()
251 proxy.onReleaseSession(requestId, sessionId); in onReleaseSession()
275 Proxy proxy = mProxy; in onDiscoveryPreferenceChanged() local
276 if (doesProxyOverridesMethod(proxy, "onDiscoveryPreferenceChanged")) { in onDiscoveryPreferenceChanged()
[all …]
DMediaRoute2ProviderServiceTest.java575 void setProxy(StubMediaRoute2ProviderService.Proxy proxy) { in setProxy() argument
578 service.setProxy(proxy); in setProxy()
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/proxy/
DBaseProxyTest.java17 package com.android.cts.deviceowner.proxy;
82 protected boolean setProxyAndWaitForBroadcast(ProxyInfo proxy) throws Exception { in setProxyAndWaitForBroadcast() argument
83 Log.d(TAG, "setProxyAndWaitForBroadcast(), setting Proxy to " + proxy); in setProxyAndWaitForBroadcast()
84 mDevicePolicyManager.setRecommendedGlobalProxy(getWho(), proxy); in setProxyAndWaitForBroadcast() local
116 String proxy = System.getProperty("http.proxyHost"); in isProxySysPropSet() local
117 return (proxy != null) && proxy.equals(mProxyHost); in isProxySysPropSet()
DPassthroughTestHelper.java17 package com.android.cts.deviceowner.proxy;
47 public PassthroughTestHelper(ProxyInfo proxy) { in PassthroughTestHelper() argument
48 mProxy = proxy; in PassthroughTestHelper()
DStaticProxyTest.java17 package com.android.cts.deviceowner.proxy;
53 ProxyInfo proxy = ProxyInfo.buildDirectProxy(mProxyHost, PROXY_PORT, mExclList); in testBroadcast() local
54 assertTrue("No broadcast after setting proxy", setProxyAndWaitForBroadcast(proxy)); in testBroadcast()
DPacProxyTest.java17 package com.android.cts.deviceowner.proxy;
117 ProxyInfo proxy = ProxyInfo.buildPacProxy(pacProxyUri); in setPacURLAndWaitForDownload() local
118 assertTrue("No broadcast after setting proxy", setProxyAndWaitForBroadcast(proxy)); in setPacURLAndWaitForDownload()
DPacFileServer.java17 package com.android.cts.deviceowner.proxy;
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-2025/
DIPCThreadState.h67 void incStrongHandle(int32_t handle, BpBinder *proxy);
69 void incWeakHandle(int32_t handle, BpBinder *proxy);
74 BpBinder* proxy);
76 BpBinder* proxy);
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/
DBluetoothLeAudioTest.java167 public void onServiceConnected(int profile, BluetoothProfile proxy) { in onServiceConnected() argument
169 mBluetoothLeAudio = (BluetoothLeAudio) proxy; in onServiceConnected()
DHearingAidProfileTest.java273 public void onServiceConnected(int profile, BluetoothProfile proxy) { in onServiceConnected() argument
275 mService = (BluetoothHearingAid) proxy; in onServiceConnected()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DHidDeviceActivity.java66 public void onServiceConnected(int profile, BluetoothProfile proxy) {
68 mBluetoothHidDevice = (BluetoothHidDevice) proxy;
/cts/tests/location/location_gnss/src/android/location/cts/gnss/asn1/supl2/supl_init/
DSLPMode.java38 proxy(0), enumConstant
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DCommandSession.java439 public ActivitySession startActivity(LaunchProxy proxy) {
441 final boolean waitIdle = proxy.shouldWaitForLaunched();
445 proxy.setLaunchInjector(new LaunchInjector() {
448 final Bundle bundle = proxy.getExtras();
467 proxy.execute();
/cts/tests/tests/car/src/android/car/cts/
DCarBluetoothTest.java200 public void onServiceConnected(int profile, BluetoothProfile proxy) { in onServiceConnected() argument
/cts/tests/camera/src/android/hardware/camera2/cts/
DCameraExtensionSessionTest.java992 public SimpleCaptureCallback(CameraExtensionSession.ExtensionCaptureCallback proxy) { in SimpleCaptureCallback() argument
993 mProxy = proxy; in SimpleCaptureCallback()