Searched refs:proxy (Results 51 - 66 of 66) sorted by relevance

123

/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java644 public void onServiceConnected(int profile, BluetoothProfile proxy) {
645 mBluetoothHeadset = (BluetoothHeadset) proxy;
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java102 void setHttpProxy(String proxy, String port, String exclList) throws RemoteException; argument
H A DApplicationThreadNative.java48 * a proxy if needed.
329 final String proxy = data.readString();
332 setHttpProxy(proxy, port, exclList);
956 public void setHttpProxy(String proxy, String port, String exclList) throws RemoteException { argument
959 data.writeString(proxy);
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DAbstractProxyTest.java90 * We had bugs where proxy system properties weren't being honored.
115 .setBody("this response comes via a proxy");
125 assertEquals("this response comes via a proxy", contentToString(response));
157 .setBody("this response comes via a secure proxy"));
170 assertEquals("this response comes via a secure proxy", contentToString(response));
173 assertEquals("Connect line failure on proxy " + proxyConfig,
191 server.enqueue(new MockResponse().setBody("Via request parameter proxy!"));
193 System.setProperty("http.proxyHost", "proxy.foo");
200 assertEquals("Via request parameter proxy!", contentToString(response));
209 System.setProperty("http.proxyHost", "proxy
271 configure(MockWebServer proxy, HttpClient client, HttpRequest request) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java207 * @param proxy A CallbackProxy for posting messages to the UI thread and
212 public BrowserFrame(Context context, WebViewCore w, CallbackProxy proxy, argument
251 mCallbackProxy = proxy;
256 nativeCreateFrame(w, am, proxy.getBackForwardList());
H A DWebViewCore.java158 public WebViewCore(Context context, WebViewClassic w, CallbackProxy proxy, argument
161 mCallbackProxy = proxy;
456 // Inform the callback proxy of the quota overflow. Send an object
H A DWebViewClassic.java143 // we should bounce the call out via the proxy to enable any sub-class to override it.
977 // Basically this proxy is used to tell the Video to update layer tree at
1410 * @return The webview proxy that this classic webview is bound to.
1430 // Accessors, purely for convenience (and to reduce code churn during webview proxy migration).
4913 * Called by DRT on UI thread, need to proxy to WebCore thread.
4923 * by DRT on UI thread, need to proxy to WebCore thread.
8511 public void setHTML5VideoViewProxy(HTML5VideoViewProxy proxy) { argument
8512 mHTML5VideoViewProxy = proxy;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDataConnection.java627 // copy HTTP proxy as it is not part DataCallState.
700 ProxyProperties proxy = (ProxyProperties) msg.obj;
701 if (VDBG) log("REQ_SET_LINK_PROPERTIES_HTTP_PROXY proxy=" + proxy);
702 mLinkProperties.setHttpProxy(proxy);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp211 const sp<ICameraRecordingProxy> &proxy) {
217 if (proxy == 0) {
218 ALOGE("camera proxy is NULL");
223 mCameraProxy = proxy;
210 setCamera(const sp<ICamera> &camera, const sp<ICameraRecordingProxy> &proxy) argument
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java178 // all providers that operate over proxy, for authorizing incoming location
299 // as a proxy for coreApp="true"
1510 for (LocationProviderProxy proxy : mProxyProviders) {
1511 if (doesPackageHaveUid(uid, proxy.getConnectedPackageName())) return;
2065 LocationProviderProxy proxy = (LocationProviderProxy) provider;
2066 pw.print(" (" + proxy.getConnectedPackageName() + ")");
/frameworks/base/tools/aidl/
H A Daidl.cpp322 // for interfaces, also add the stub and proxy types, we don't
336 Type* proxy = new Type(c->package ? c->package : "", local
339 NAMES.Add(proxy);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmDataConnectionTracker.java1800 if (apn != null && apn.proxy != null && apn.proxy.length() != 0) {
1804 ProxyProperties proxy = new ProxyProperties(apn.proxy,
1806 dcac.setLinkPropertiesHttpProxySync(proxy);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java1802 private void proxy(Runnable runnable) { method in class:SipSessionGroup.KeepAliveProcessCallbackProxy
1811 proxy(new Runnable() {
1824 proxy(new Runnable() {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java69 * = IP and proxy configuration that is handled by WifiConfigStore and
134 /* IP and proxy configuration keys */
543 // add old proxy details
558 // Clear everything except proxy
559 ProxyProperties proxy = config.linkProperties.getHttpProxy();
561 config.linkProperties.setHttpProxy(proxy);
567 * Fetch the proxy properties for a given network id
797 loge("Ignthisore invalid proxy settings while writing");
942 loge("Ignore invalid proxy settings while reading");
1253 loge("Ignore invalid proxy configuratio
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java400 // Keyguard manager proxy
2103 // If we could not get a bluetooth headset proxy, send a failure message
2105 // If we could get a proxy, send a delayed failure message that will reset our state
2156 public void onServiceConnected(int profile, BluetoothProfile proxy) {
2161 BluetoothA2dp a2dp = (BluetoothA2dp) proxy;
2184 mBluetoothHeadset = (BluetoothHeadset) proxy;
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1086 ProxyProperties proxy = (ProxyProperties)msg.obj;
1090 if (proxy != null) {
1091 host = proxy.getHost();
1092 port = Integer.toString(proxy.getPort());
1093 exclList = proxy.getExclusionList();
1102 Slog.w(TAG, "Failed to update http proxy for: " +
11710 ProxyProperties proxy = intent.getParcelableExtra("proxy");
11711 mHandler.sendMessage(mHandler.obtainMessage(UPDATE_HTTP_PROXY, proxy));

Completed in 473 milliseconds

123