Searched defs:proxy (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/wifi/java/android/net/wifi/
H A DNetworkUpdateResult.java33 public NetworkUpdateResult(boolean ip, boolean proxy) { argument
36 proxyChanged = proxy;
55 public void setProxyChanged(boolean proxy) { argument
56 proxyChanged = proxy;
/frameworks/base/core/java/android/net/http/
H A DHttpsConnection.java50 * a http proxy server to a https server.
135 // Used when connecting through a proxy.
141 HttpsConnection(Context context, HttpHost host, HttpHost proxy, argument
144 mProxyHost = proxy;
157 * Opens the connection to a http server or proxy.
167 // If we have a proxy set, we first send a CONNECT request
168 // to the proxy; if the proxy returns 200 OK, we negotiate
169 // a secure connection to the target server via the proxy.
195 "failed to establish a connection to the proxy";
[all...]
H A DConnection.java70 * The host this connection is connected to. If using proxy,
71 * this is set to the proxy address
124 Context context, HttpHost host, HttpHost proxy,
132 return new HttpsConnection(context, host, proxy, requestFeeder);
123 getConnection( Context context, HttpHost host, HttpHost proxy, RequestFeeder requestFeeder) argument
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoInline.java66 public void prepareDataAndDisplayMode(HTML5VideoViewProxy proxy) { argument
67 super.prepareDataAndDisplayMode(proxy);
68 setFrameAvailableListener(proxy);
73 mPlayer.setWakeMode(proxy.getContext(), PowerManager.FULL_WAKE_LOCK);
79 public void pauseAndDispatch(HTML5VideoViewProxy proxy) { argument
80 super.pauseAndDispatch(proxy);
H A DWebBackForwardListClassic.java34 /*package*/ WebBackForwardListClassic(CallbackProxy proxy) { argument
37 mCallbackProxy = proxy;
H A DHTML5VideoFullScreen.java271 HTML5VideoViewProxy proxy, WebViewClassic webView) {
275 mProxy = proxy;
270 enterFullScreenVideoState(int layerId, HTML5VideoViewProxy proxy, WebViewClassic webView) argument
H A DHTML5VideoView.java192 HTML5VideoViewProxy proxy) {
193 boolean isPrivate = proxy.getWebView().isPrivateBrowsingEnabled();
206 public void setVideoURI(String uri, HTML5VideoViewProxy proxy) { argument
209 mHeaders = generateHeaders(uri, proxy);
213 public void setOnCompletionListener(HTML5VideoViewProxy proxy) { argument
214 mPlayer.setOnCompletionListener(proxy);
217 public void setOnErrorListener(HTML5VideoViewProxy proxy) { argument
218 mPlayer.setOnErrorListener(proxy);
221 public void setOnPreparedListener(HTML5VideoViewProxy proxy) { argument
222 mProxy = proxy;
191 generateHeaders(String url, HTML5VideoViewProxy proxy) argument
226 setOnInfoListener(HTML5VideoViewProxy proxy) argument
230 prepareDataCommon(HTML5VideoViewProxy proxy) argument
255 reprepareData(HTML5VideoViewProxy proxy) argument
262 prepareDataAndDisplayMode(HTML5VideoViewProxy proxy) argument
292 TimeupdateTask(HTML5VideoViewProxy proxy) argument
316 pauseAndDispatch(HTML5VideoViewProxy proxy) argument
326 enterFullScreenVideoState(int layerId, HTML5VideoViewProxy proxy, WebViewClassic webView) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPbap.java34 * BluetoothPbap is a proxy object for controlling the Bluetooth Pbap
39 * are finished with the BluetoothPbap, so that this proxy object can unbind
96 * Called to notify the client when this proxy object has been
101 public void onServiceConnected(BluetoothPbap proxy); argument
104 * Called to notify the client that this proxy object has been
147 * Create a BluetoothPbap proxy object.
206 * @return One of the STATE_ return codes, or STATE_ERROR if this proxy
225 * connecting state, or if this proxy object is not connected to
243 * include connecting). Returns false if not connected, or if this proxy
261 * it may soon be made asynchronous. Returns false if this proxy objec
[all...]
H A DBluetoothProfile.java162 * Called to notify the client when the proxy object has been
166 * @param proxy - One of {@link BluetoothHealth}, {@link BluetoothHeadset} or
169 public void onServiceConnected(int profile, BluetoothProfile proxy); argument
172 * Called to notify the client that this proxy object has been
H A DBluetoothAdapter.java1137 * Get the profile proxy object associated with the profile.
1142 * the connection status and to get the proxy object.
1175 * Close the connection of the profile proxy to the Service.
1178 * the proxy obtained from {@link #getProfileProxy}.
1183 * @param proxy Profile proxy object
1185 public void closeProfileProxy(int profile, BluetoothProfile proxy) { argument
1186 if (proxy == null) return;
1190 BluetoothHeadset headset = (BluetoothHeadset)proxy;
1194 BluetoothA2dp a2dp = (BluetoothA2dp)proxy;
[all...]
/frameworks/base/core/java/android/net/
H A DLinkSocket.java54 * Creates a new unconnected socket usign the given proxy type.
56 * @param proxy the specified proxy for this socket
57 * @throws IllegalArgumentException if the argument proxy is null or of an invalid type.
59 * to connect to the given proxy.
61 public LinkSocket(LinkSocketNotifier notifier, Proxy proxy) { argument
62 if (DBG) log("LinkSocket(notifier, proxy) EX");
H A DLinkProperties.java35 * multiple dns servers but only one http proxy.
130 public void setHttpProxy(ProxyProperties proxy) { argument
131 mHttpProxy = proxy;
168 String proxy = (mHttpProxy == null ? "" : "HttpProxy: " + mHttpProxy.toString() + " ");
170 return ifaceName + linkAddresses + routes + dns + proxy;
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java39 private void proxy(Runnable runnable) { method in class:SipSessionListenerProxy
48 proxy(new Runnable() {
62 proxy(new Runnable() {
75 proxy(new Runnable() {
89 proxy(new Runnable() {
102 proxy(new Runnable() {
116 proxy(new Runnable() {
129 proxy(new Runnable() {
143 proxy(new Runnable() {
157 proxy(ne
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeBase.h30 namespace proxy namespace in namespace:mcld
40 } // namespace of template proxy
70 proxy::move<DIRECT>(m_pNode);
89 namespace proxy namespace in namespace:mcld
107 } //namespace of template proxy
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnSetting.java28 public final String proxy; field in class:ApnSetting
55 String proxy, String port,
63 this.proxy = proxy;
87 * <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>,
92 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>,
162 .append(", ").append(proxy)
54 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types, String protocol, String roamingProtocol, boolean carrierEnabled, int bearer) argument
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp31 status_t MediaRecorder::setCamera(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy) argument
33 ALOGV("setCamera(%p,%p)", camera.get(), proxy.get());
43 status_t ret = mMediaRecorder->setCamera(camera, proxy);
H A DIMediaRecorder.cpp65 status_t setCamera(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy) argument
67 ALOGV("setCamera(%p,%p)", camera.get(), proxy.get());
71 data.writeStrongBinder(proxy->asBinder());
437 sp<ICameraRecordingProxy> proxy = local
439 reply->writeInt32(setCamera(camera, proxy));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp73 const sp<ICameraRecordingProxy>& proxy)
81 return mRecorder->setCamera(camera, proxy);
72 setCamera(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy) argument
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp37 const sp<ICameraRecordingProxy> &proxy,
45 CameraSourceTimeLapse(camera, proxy, cameraId,
60 const sp<ICameraRecordingProxy>& proxy,
66 : CameraSource(camera, proxy, cameraId, videoSize, videoFrameRate, surface, true),
35 CreateFromCamera( const sp<ICamera> &camera, const sp<ICameraRecordingProxy> &proxy, int32_t cameraId, Size videoSize, int32_t videoFrameRate, const sp<Surface>& surface, int64_t timeBetweenFrameCaptureUs) argument
58 CameraSourceTimeLapse( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, Size videoSize, int32_t videoFrameRate, const sp<Surface>& surface, int64_t timeBetweenFrameCaptureUs) argument
H A DSurfaceMediaSource.cpp70 sp<BufferQueue::ConsumerListener> proxy; local
72 proxy = new BufferQueue::ProxyConsumerListener(listener);
74 status_t err = mBufferQueue->consumerConnect(proxy);
H A DCameraSource.cpp136 const sp<ICameraRecordingProxy>& proxy,
143 CameraSource *source = new CameraSource(camera, proxy, cameraId,
151 const sp<ICameraRecordingProxy>& proxy,
175 mInitCheck = init(camera, proxy, cameraId,
186 const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy,
194 // We get the proxy from Camera, not ICamera. We need to get the proxy
196 // local Camera object created by us. We cannot use the proxy from
200 mCameraRecordingProxy = proxy;
470 const sp<ICameraRecordingProxy>& proxy,
134 CreateFromCamera( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, Size videoSize, int32_t frameRate, const sp<Surface>& surface, bool storeMetaDataInVideoBuffers) argument
149 CameraSource( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, Size videoSize, int32_t frameRate, const sp<Surface>& surface, bool storeMetaDataInVideoBuffers) argument
185 isCameraAvailable( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId) argument
468 init( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, Size videoSize, int32_t frameRate, bool storeMetaDataInVideoBuffers) argument
486 initWithCameraAccess( const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, Size videoSize, int32_t frameRate, bool storeMetaDataInVideoBuffers) argument
[all...]
/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/native/libs/gui/
H A DConsumerBase.cpp66 sp<BufferQueue::ConsumerListener> proxy; local
68 proxy = new BufferQueue::ProxyConsumerListener(listener);
70 status_t err = mBufferQueue->consumerConnect(proxy);
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp102 m->comment += " * generating a proxy if needed.\n */";
384 // == the proxy method ===================================================
385 Method* proxy = new Method; local
386 proxy->comment = gather_comments(method->comments_token->extra);
387 proxy->modifiers = PUBLIC | OVERRIDE;
388 proxy->returnType = NAMES.Search(method->type.type.data);
389 proxy->returnTypeDimension = method->type.dimension;
390 proxy->name = method->name.data;
391 proxy->statements = new StatementBlock;
394 proxy
496 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy) argument
537 ProxyClass* proxy = new ProxyClass( local
[all...]
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);

Completed in 327 milliseconds

12