Searched refs:proxy (Results 1 - 25 of 94) sorted by relevance

1234

/frameworks/base/location/java/android/location/
H A DIGeofenceProvider.aidl27 void setGeofenceHardware(in IGeofenceHardware proxy);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionListenerProxy.java39 private void proxy(Runnable runnable) { method in class:SipSessionListenerProxy
49 proxy(new Runnable() {
65 proxy(new Runnable() {
80 proxy(new Runnable() {
96 proxy(new Runnable() {
111 proxy(new Runnable() {
127 proxy(new Runnable() {
142 proxy(new Runnable() {
158 proxy(new Runnable() {
174 proxy(ne
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DNetworkUpdateResult.java35 public NetworkUpdateResult(boolean ip, boolean proxy, boolean credential) { argument
38 proxyChanged = proxy;
/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp65 benchmark::BenchmarkReporter* reporter, RenderProxy* proxy,
99 durationInS = proxy->frameTimePercentile(ri.percentile) / 1000.0;
133 std::unique_ptr<RenderProxy> proxy(new RenderProxy(false, rootNode.get(), &factory));
134 proxy->loadSystemProperties();
135 proxy->initialize(surface);
137 proxy->setup(dp(800.0f), 255 * 0.075, 255 * 0.15);
138 proxy->setLightCenter((Vector3){lightX, dp(-200.0f), dp(800.0f)});
149 UiFrameInfoBuilder(proxy->frameInfo()).setVsync(vsync, vsync);
150 proxy->syncAndDrawFrame();
153 proxy
64 outputBenchmarkReport(const TestScene::Info& info, const TestScene::Options& opts, benchmark::BenchmarkReporter* reporter, RenderProxy* proxy, double durationInS) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_ThreadedRenderer.cpp651 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
652 return proxy->getRenderThreadTid();
671 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
672 delete proxy;
677 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
678 return proxy->loadSystemProperties();
683 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
685 proxy->setName(name);
691 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
693 proxy
698 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
708 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
718 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
724 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
730 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
736 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
742 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
751 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
760 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
786 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
793 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
800 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
809 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
816 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
823 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
830 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
850 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
856 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
862 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
868 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
874 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
881 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
888 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
895 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
902 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
928 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
946 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(proxyPtr); local
[all...]
H A Dandroid_view_Surface.cpp554 RenderProxy* proxy = new RenderProxy(false, rootNode, &factory); local
555 proxy->loadSystemProperties();
557 proxy->setWideGamut(true);
559 proxy->setSwapBehavior(SwapBehavior::kSwap_discardBuffer);
560 proxy->initialize(surface);
563 proxy->setup(0, 0, 0);
564 proxy->setLightCenter((Vector3){0, 0, 0});
565 return (jlong) proxy;
569 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
571 proxy
575 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
584 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
[all...]
/frameworks/base/core/java/android/net/
H A DPacProxySelector.java53 Log.e(TAG, "PacManager: no proxy service");
65 Log.e(TAG, "select: no proxy service return NO_PROXY");
103 Proxy proxy = proxyFromHostPort(Type.HTTP, trimmed.substring(PROXY.length()));
104 if (proxy != null) {
105 ret.add(proxy);
108 Proxy proxy = proxyFromHostPort(Type.SOCKS, trimmed.substring(SOCKS.length()));
109 if (proxy != null) {
110 ret.add(proxy);
127 Log.d(TAG, "Unable to parse proxy " + hostPortString + " " + e);
H A DProxy.java33 * A convenience class for accessing the user and default proxy
43 * Used to notify an app that's caching the proxy that either the default
44 * connection has changed or any connection's proxy has changed. The new
45 * proxy should be queried using {@link ConnectivityManager#getDefaultProxy()}.
53 * It describes the new proxy being used (as a {@link ProxyInfo} object).
54 * @deprecated Because {@code PROXY_CHANGE_ACTION} is sent whenever the proxy
58 * to get the proxy for the Network(s) they are using.
101 * Return the proxy object to be used for the URL given as parameter.
102 * @param ctx A Context used to get the settings for the proxy host.
126 * Return the proxy hos
[all...]
H A DNetwork.java321 // TODO: Should this be optimized to avoid fetching the global proxy for every request?
323 final java.net.Proxy proxy;
325 proxy = proxyInfo.makeProxy();
327 proxy = java.net.Proxy.NO_PROXY;
329 return openConnection(url, proxy);
336 * @param proxy the proxy through which the connection will be established.
339 * @throws IllegalArgumentException if the argument proxy is null.
343 public URLConnection openConnection(URL url, java.net.Proxy proxy) throws IOException { argument
344 if (proxy
[all...]
/frameworks/native/include/binder/
H A DIPCThreadState.h67 void incStrongHandle(int32_t handle, BpBinder *proxy);
69 void incWeakHandle(int32_t handle, BpBinder *proxy);
74 BpBinder* proxy);
76 BpBinder* proxy);
/frameworks/native/libs/binder/include/binder/
H A DIPCThreadState.h67 void incStrongHandle(int32_t handle, BpBinder *proxy);
69 void incWeakHandle(int32_t handle, BpBinder *proxy);
74 BpBinder* proxy);
76 BpBinder* proxy);
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java45 GeocoderProxy proxy = new GeocoderProxy(context, overlaySwitchResId,
47 if (proxy.bind()) {
48 return proxy;
H A DContextHubClientManager.java56 * The proxy to talk to the Context Hub.
122 ContextHubClientBroker proxy = mHostEndPointIdToClientMap.get(message.hostEndPoint);
123 if (proxy != null) {
124 proxy.sendMessageToClient(clientMessage);
H A DGeofenceProxy.java69 GeofenceProxy proxy = new GeofenceProxy(context, overlaySwitchResId,
72 if (proxy.bindGeofenceProvider()) {
73 return proxy;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcAsyncChannel.java289 public void reqSetLinkPropertiesHttpProxy(ProxyInfo proxy) { argument
290 sendMessage(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy);
291 if (DBG) log("reqSetLinkPropertiesHttpProxy proxy=" + proxy);
297 public void setLinkPropertiesHttpProxySync(ProxyInfo proxy) { argument
300 sendMessageSynchronously(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy);
307 mDc.setLinkPropertiesHttpProxy(proxy);
H A DApnSetting.java59 public final String proxy; field in class:ApnSetting
155 String proxy, String port,
166 this.proxy = proxy;
201 String proxy, String port,
208 this(id, numeric, carrier, apn, proxy, port, mmsc, mmsProxy, mmsPort, user, password,
215 String proxy, String port,
226 this.proxy = proxy;
260 this(apn.id, apn.numeric, apn.carrier, apn.apn, apn.proxy, ap
154 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, int bearerBitmask, int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime, int mtu, String mvnoType, String mvnoMatchData) argument
200 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 networkTypeBitmask, int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime, int mtu, String mvnoType, String mvnoMatchData) argument
214 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 networkTypeBitmask, int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime, int mtu, String mvnoType, String mvnoMatchData, int apnSetId) argument
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java66 private static final String ACTION_PAC_REFRESH = "android.net.proxy.PAC_REFRESH";
173 * @param proxy Proxy information that is about to be broadcast.
176 public synchronized boolean setCurrentProxyScriptUrl(ProxyInfo proxy) { argument
177 if (!Uri.EMPTY.equals(proxy.getPacFileUrl())) {
178 if (proxy.getPacFileUrl().equals(mPacUrl) && (proxy.getPort() > 0)) {
182 mPacUrl = proxy.getPacFileUrl();
281 Log.e(TAG, "setCurrentProxyScript: no proxy service");
325 Log.e(TAG, "No proxy service");
361 Log.d(TAG, "Local proxy i
392 sendPacBroadcast(ProxyInfo proxy) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h40 const sp<ICameraRecordingProxy> &proxy,
117 const sp<ICameraRecordingProxy> &proxy,
/frameworks/av/media/libstagefright/filters/
H A DGraphicBufferListener.cpp51 sp<BufferQueue::ProxyConsumerListener> proxy = local
54 err = mConsumer->consumerConnect(proxy, false);
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DCameraSourceTimeLapse.h40 const sp<ICameraRecordingProxy> &proxy,
117 const sp<ICameraRecordingProxy> &proxy,
/frameworks/av/services/audioflinger/
H A DRecordTracks.h127 void setPeerProxy(PatchProxyBufferProvider *proxy) { mPeerProxy = proxy; } argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DPbapServerProfile.java58 public void onServiceConnected(BluetoothPbap proxy) { argument
60 mService = (BluetoothPbap) proxy;
151 Log.w(TAG, "Error cleaning up PBAP proxy", t);
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp39 const sp<ICameraRecordingProxy> &proxy,
51 CameraSourceTimeLapse(camera, proxy, cameraId,
68 const sp<ICameraRecordingProxy>& proxy,
78 : CameraSource(camera, proxy, cameraId, clientName, clientUid, clientPid,
37 CreateFromCamera( const sp<hardware::ICamera> &camera, const sp<ICameraRecordingProxy> &proxy, int32_t cameraId, const String16& clientName, uid_t clientUid, pid_t clientPid, Size videoSize, int32_t videoFrameRate, const sp<IGraphicBufferProducer>& surface, int64_t timeBetweenFrameCaptureUs, bool storeMetaDataInVideoBuffers) argument
66 CameraSourceTimeLapse( const sp<hardware::ICamera>& camera, const sp<ICameraRecordingProxy>& proxy, int32_t cameraId, const String16& clientName, uid_t clientUid, pid_t clientPid, Size videoSize, int32_t videoFrameRate, const sp<IGraphicBufferProducer>& surface, int64_t timeBetweenFrameCaptureUs, bool storeMetaDataInVideoBuffers) argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothProfile.java262 * Called to notify the client when the proxy object has been
266 * @param proxy - One of {@link BluetoothHealth}, {@link BluetoothHeadset} or {@link
269 public void onServiceConnected(int profile, BluetoothProfile proxy); argument
272 * Called to notify the client that this proxy object has been
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp654 void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) argument
660 proxy->incStrong(mProcess.get());
661 mPostWriteStrongDerefs.push(proxy);
671 void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) argument
677 proxy->getWeakRefs()->incWeak(mProcess.get());
678 mPostWriteWeakDerefs.push(proxy->getWeakRefs());
720 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) argument
724 mOut.writePointer((uintptr_t)proxy);
728 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) argument
732 mOut.writePointer((uintptr_t)proxy);
1159 BpBinder *proxy = (BpBinder*)mIn.readPointer(); local
1167 BpBinder *proxy = (BpBinder*)mIn.readPointer(); local
[all...]

Completed in 462 milliseconds

1234