Home
last modified time | relevance | path

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

1234

/frameworks/base/core/jni/
Dandroid_view_ThreadedRenderer.cpp221 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); in android_view_ThreadedRenderer_setAtlas() local
222 proxy->setTextureAtlas(buffer, map, len); in android_view_ThreadedRenderer_setAtlas()
227 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); in android_view_ThreadedRenderer_setProcessStatsBuffer() local
228 proxy->setProcessStatsBuffer(fd); in android_view_ThreadedRenderer_setProcessStatsBuffer()
247 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); in android_view_ThreadedRenderer_deleteProxy() local
248 delete proxy; in android_view_ThreadedRenderer_deleteProxy()
253 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); in android_view_ThreadedRenderer_loadSystemProperties() local
254 return proxy->loadSystemProperties(); in android_view_ThreadedRenderer_loadSystemProperties()
259 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); in android_view_ThreadedRenderer_setName() local
261 proxy->setName(name); in android_view_ThreadedRenderer_setName()
[all …]
Dandroid_view_Surface.cpp480 RenderProxy* proxy = new RenderProxy(false, rootNode, &factory); in create() local
481 proxy->loadSystemProperties(); in create()
482 proxy->setSwapBehavior(kSwap_discardBuffer); in create()
483 proxy->initialize(surface); in create()
486 proxy->setup(0, 0, 0, 0, 0); in create()
487 proxy->setLightCenter((Vector3){0, 0, 0}); in create()
488 return (jlong) proxy; in create()
492 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); in setSurface() local
494 proxy->updateSurface(surface); in setSurface()
498 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); in draw() local
[all …]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipSessionListenerProxy.java39 private void proxy(Runnable runnable) { in proxy() method in SipSessionListenerProxy
49 proxy(new Runnable() { in onCalling()
65 proxy(new Runnable() { in onRinging()
80 proxy(new Runnable() { in onRingingBack()
96 proxy(new Runnable() { in onCallEstablished()
111 proxy(new Runnable() { in onCallEnded()
127 proxy(new Runnable() { in onCallTransferring()
142 proxy(new Runnable() { in onCallBusy()
158 proxy(new Runnable() { in onCallChangeFailed()
174 proxy(new Runnable() { in onError()
[all …]
/frameworks/base/docs/html/tools/studio/
Dstudio-config.jd13 <li><a href="#proxy">Proxy Settings</a></li>
75 <h2 id="proxy">Proxy Settings</h2>
79 <p>To support running Android Studio behind a firewall, set the proxy settings for the
81 the HTTP proxy settings for Android Studio. The SDK Manager has a separate HTTP Proxy settings
85 Android Studio is not installed, such as continuous integration servers, set the proxy settings
95 <p>Android Studio supports HTTP proxy settings so you can run Android Studio behind a firewall or
96 secure network. To set the HTTP proxy settings in Android Studio:</p>
110 proxy settings or <strong>manual</strong> to enter each of the settings. For a detailed explanation
112 <a href="https://www.jetbrains.com/idea/help/http-proxy.html">HTTP Proxy</a>. </li>
113 <li>Click <strong>Apply</strong> to enable the proxy settings. </li>
[all …]
/frameworks/base/tools/aidl/
Dgenerate_java_binder.cpp385 Method* proxy = new Method; in generate_method() local
386 proxy->comment = gather_comments(method->comments_token->extra); in generate_method()
387 proxy->modifiers = PUBLIC | OVERRIDE; in generate_method()
388 proxy->returnType = NAMES.Search(method->type.type.data); in generate_method()
389 proxy->returnTypeDimension = method->type.dimension; in generate_method()
390 proxy->name = method->name.data; in generate_method()
391 proxy->statements = new StatementBlock; in generate_method()
394 proxy->parameters.push_back(new Variable( in generate_method()
399 proxy->exceptions.push_back(REMOTE_EXCEPTION_TYPE); in generate_method()
400 proxyClass->elements.push_back(proxy); in generate_method()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DNetworkUpdateResult.java33 public NetworkUpdateResult(boolean ip, boolean proxy) { in NetworkUpdateResult() argument
36 proxyChanged = proxy; in NetworkUpdateResult()
55 public void setProxyChanged(boolean proxy) { in setProxyChanged() argument
56 proxyChanged = proxy; in setProxyChanged()
/frameworks/base/core/java/android/net/
DPacProxySelector.java94 Proxy proxy = proxyFromHostPort(Type.HTTP, trimmed.substring(PROXY.length())); in parseResponse() local
95 if (proxy != null) { in parseResponse()
96 ret.add(proxy); in parseResponse()
99 Proxy proxy = proxyFromHostPort(Type.SOCKS, trimmed.substring(SOCKS.length())); in parseResponse() local
100 if (proxy != null) { in parseResponse()
101 ret.add(proxy); in parseResponse()
DNetwork.java253 java.net.Proxy proxy = null; in openConnection() local
255 proxy = proxyInfo.makeProxy(); in openConnection()
257 proxy = java.net.Proxy.NO_PROXY; in openConnection()
259 return openConnection(url, proxy); in openConnection()
273 public URLConnection openConnection(URL url, java.net.Proxy proxy) throws IOException { in openConnection() argument
274 if (proxy == null) throw new IllegalArgumentException("proxy is null"); in openConnection()
281 okUrlFactory = HttpHandler.createHttpOkUrlFactory(proxy); in openConnection()
283 okUrlFactory = HttpsHandler.createHttpsOkUrlFactory(proxy); in openConnection()
DProxy.java134 java.net.Proxy proxy = getProxy(ctx, null); in getHost() local
135 if (proxy == java.net.Proxy.NO_PROXY) return null; in getHost()
137 return ((InetSocketAddress)(proxy.address())).getHostName(); in getHost()
151 java.net.Proxy proxy = getProxy(ctx, null); in getPort() local
152 if (proxy == java.net.Proxy.NO_PROXY) return -1; in getPort()
154 return ((InetSocketAddress)(proxy.address())).getPort(); in getPort()
/frameworks/base/libs/hwui/tests/
Dmain.cpp91 std::unique_ptr<RenderProxy> proxy(new RenderProxy(false, rootNode, &factory)); in run() local
92 proxy->loadSystemProperties(); in run()
93 proxy->initialize(surface); in run()
95 proxy->setup(width, height, dp(800.0f), 255 * 0.075, 255 * 0.15); in run()
96 proxy->setLightCenter((Vector3){lightX, dp(-200.0f), dp(800.0f)}); in run()
107 proxy->syncAndDrawFrame(); in run()
109 proxy->resetProfileInfo(); in run()
116 UiFrameInfoBuilder(proxy->frameInfo()) in run()
119 proxy->syncAndDrawFrame(); in run()
122 proxy->dumpProfileInfo(STDOUT_FILENO, 0); in run()
/frameworks/av/include/media/stagefright/
DCameraSource.h79 const sp<ICameraRecordingProxy> &proxy,
171 CameraSource(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy,
213 status_t init(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy,
218 const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy,
223 const sp<ICameraRecordingProxy>& proxy,
DCameraSourceTimeLapse.h37 const sp<ICameraRecordingProxy> &proxy,
113 const sp<ICameraRecordingProxy> &proxy,
/frameworks/base/services/core/java/com/android/server/connectivity/
DPacManager.java160 public synchronized boolean setCurrentProxyScriptUrl(ProxyInfo proxy) { in setCurrentProxyScriptUrl() argument
161 if (!Uri.EMPTY.equals(proxy.getPacFileUrl())) { in setCurrentProxyScriptUrl()
162 if (proxy.getPacFileUrl().equals(mPacUrl) && (proxy.getPort() > 0)) { in setCurrentProxyScriptUrl()
167 mPacUrl = proxy.getPacFileUrl(); in setCurrentProxyScriptUrl()
360 private void sendPacBroadcast(ProxyInfo proxy) { in sendPacBroadcast() argument
361 mConnectivityHandler.sendMessage(mConnectivityHandler.obtainMessage(mProxyMessage, proxy)); in sendPacBroadcast()
/frameworks/base/services/core/java/com/android/server/location/
DGeocoderProxy.java44 GeocoderProxy proxy = new GeocoderProxy(context, overlaySwitchResId, in createAndBind() local
46 if (proxy.bind()) { in createAndBind()
47 return proxy; in createAndBind()
DGeofenceProxy.java69 GeofenceProxy proxy = new GeofenceProxy(context, overlaySwitchResId, in createAndBind() local
72 if (proxy.bindGeofenceProvider()) { in createAndBind()
73 return proxy; in createAndBind()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcAsyncChannel.java287 public void reqSetLinkPropertiesHttpProxy(ProxyInfo proxy) { in reqSetLinkPropertiesHttpProxy() argument
288 sendMessage(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy); in reqSetLinkPropertiesHttpProxy()
289 if (DBG) log("reqSetLinkPropertiesHttpProxy proxy=" + proxy); in reqSetLinkPropertiesHttpProxy()
295 public void setLinkPropertiesHttpProxySync(ProxyInfo proxy) { in setLinkPropertiesHttpProxySync() argument
298 sendMessageSynchronously(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy); in setLinkPropertiesHttpProxySync()
305 mDc.setLinkPropertiesHttpProxy(proxy); in setLinkPropertiesHttpProxySync()
DApnSetting.java40 public final String proxy; field in ApnSetting
99 String proxy, String port, in ApnSetting() argument
109 this.proxy = proxy; in ApnSetting()
280 .append(", ").append(proxy) in toString()
/frameworks/base/core/java/android/bluetooth/
DIBluetoothManager.aidl42 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in bindBluetoothProfileService() argument
43 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in unbindBluetoothProfileService() argument
DBluetoothAdapter.java1856 public void closeProfileProxy(int profile, BluetoothProfile proxy) { in closeProfileProxy() argument
1857 if (proxy == null) return; in closeProfileProxy()
1861 BluetoothHeadset headset = (BluetoothHeadset)proxy; in closeProfileProxy()
1865 BluetoothA2dp a2dp = (BluetoothA2dp)proxy; in closeProfileProxy()
1869 BluetoothA2dpSink a2dpSink = (BluetoothA2dpSink)proxy; in closeProfileProxy()
1873 BluetoothAvrcpController avrcp = (BluetoothAvrcpController)proxy; in closeProfileProxy()
1877 BluetoothInputDevice iDev = (BluetoothInputDevice)proxy; in closeProfileProxy()
1881 BluetoothPan pan = (BluetoothPan)proxy; in closeProfileProxy()
1885 BluetoothHealth health = (BluetoothHealth)proxy; in closeProfileProxy()
1889 BluetoothGatt gatt = (BluetoothGatt)proxy; in closeProfileProxy()
[all …]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
DBluetoothTestUtils.java314 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); in connectProfile() local
937 assertNotNull(proxy); in connectProfile()
941 int state = proxy.getConnectionState(device); in connectProfile()
953 assertTrue(((BluetoothA2dp)proxy).connect(device)); in connectProfile()
955 assertTrue(((BluetoothHeadset)proxy).connect(device)); in connectProfile()
[all …]
/frameworks/av/media/libstagefright/
DCameraSource.cpp149 const sp<ICameraRecordingProxy>& proxy, in CreateFromCamera() argument
158 CameraSource *source = new CameraSource(camera, proxy, cameraId, in CreateFromCamera()
166 const sp<ICameraRecordingProxy>& proxy, in CameraSource() argument
192 mInitCheck = init(camera, proxy, cameraId, in CameraSource()
204 const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, in isCameraAvailable() argument
218 mCameraRecordingProxy = proxy; in isCameraAvailable()
488 const sp<ICameraRecordingProxy>& proxy, in init() argument
499 err = initWithCameraAccess(camera, proxy, cameraId, clientName, clientUid, in init()
508 const sp<ICameraRecordingProxy>& proxy, in initWithCameraAccess() argument
518 if ((err = isCameraAvailable(camera, proxy, cameraId, in initWithCameraAccess()
DCameraSourceTimeLapse.cpp39 const sp<ICameraRecordingProxy> &proxy, in CreateFromCamera() argument
50 CameraSourceTimeLapse(camera, proxy, cameraId, in CreateFromCamera()
67 const sp<ICameraRecordingProxy>& proxy, in CameraSourceTimeLapse() argument
76 : CameraSource(camera, proxy, cameraId, clientName, clientUid, in CameraSourceTimeLapse()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DPbapServerProfile.java56 public void onServiceConnected(BluetoothPbap proxy) { in onServiceConnected() argument
58 mService = (BluetoothPbap) proxy; in onServiceConnected()
/frameworks/native/include/binder/
DIPCThreadState.h74 BpBinder* proxy);
76 BpBinder* proxy);
/frameworks/av/services/audioflinger/
DRecordTracks.h111 void setPeerProxy(PatchProxyBufferProvider *proxy) { mPeerProxy = proxy; } in setPeerProxy() argument

1234