Searched defs:proxy (Results 1 - 25 of 50) sorted by last modified time

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnSetting.java51 public final String proxy; field in class:ApnSetting
128 String proxy, String port,
138 this.proxy = proxy;
167 this(apn.id, apn.numeric, apn.carrier, apn.apn, apn.proxy, apn.port, apn.mmsc, apn.mmsProxy,
183 * <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
188 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
193 * [ApnSettingV3] <carrier>, <apn>, <proxy>, <port>, <user>, <password>, <server>,
317 .append(", ").append(proxy)
505 proxy
127 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
[all...]
H A DDataConnection.java276 void setLinkPropertiesHttpProxy(ProxyInfo proxy) { argument
277 mLinkProperties.setHttpProxy(proxy);
338 // copy HTTP proxy as it is not part DataCallResponse.
437 + "' proxy='" + mApnSetting.proxy + "' port='" + mApnSetting.port + "'");
1160 ProxyInfo proxy = (ProxyInfo) msg.obj;
1161 if (VDBG) log("REQ_SET_LINK_PROPERTIES_HTTP_PROXY proxy=" + proxy);
1162 setLinkPropertiesHttpProxy(proxy);
H A DDcAsyncChannel.java287 public void reqSetLinkPropertiesHttpProxy(ProxyInfo proxy) { argument
288 sendMessage(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy);
289 if (DBG) log("reqSetLinkPropertiesHttpProxy proxy=" + proxy);
295 public void setLinkPropertiesHttpProxySync(ProxyInfo proxy) { argument
298 sendMessageSynchronously(REQ_SET_LINK_PROPERTIES_HTTP_PROXY, proxy);
305 mDc.setLinkPropertiesHttpProxy(proxy);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java1814 private void proxy(Runnable runnable) { method in class:SipSessionGroup.KeepAliveProcessCallbackProxy
1824 proxy(new Runnable() {
1839 proxy(new Runnable() {
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.java33 public NetworkUpdateResult(boolean ip, boolean proxy) { argument
36 proxyChanged = proxy;
55 public void setProxyChanged(boolean proxy) { argument
56 proxyChanged = proxy;
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp691 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) argument
695 mOut.writePointer((uintptr_t)proxy);
699 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) argument
703 mOut.writePointer((uintptr_t)proxy);
1149 BpBinder *proxy = (BpBinder*)mIn.readPointer(); local
1150 proxy->sendObituary();
1152 mOut.writePointer((uintptr_t)proxy);
1157 BpBinder *proxy = (BpBinder*)mIn.readPointer(); local
1158 proxy->getWeakRefs()->decWeak(proxy);
[all...]
H A DParcel.cpp251 BpBinder *proxy = binder->remoteBinder(); local
252 if (proxy == NULL) {
253 ALOGE("null proxy");
255 const int32_t handle = proxy ? proxy->handle() : 0;
285 BpBinder *proxy = real->remoteBinder(); local
286 if (proxy == NULL) {
287 ALOGE("null proxy");
289 const int32_t handle = proxy ? proxy
[all...]
/frameworks/native/libs/gui/
H A DConsumerBase.cpp68 sp<IConsumerListener> proxy = new BufferQueue::ProxyConsumerListener(listener); local
70 status_t err = mConsumer->consumerConnect(proxy, controlledByApp);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java1810 public void setProxy(ProxySettings settings, ProxyInfo proxy) { argument
1812 mIpConfiguration.httpProxy = proxy;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java64 private static final String ACTION_PAC_REFRESH = "android.net.proxy.PAC_REFRESH";
165 * @param proxy Proxy information that is about to be broadcast.
168 public synchronized boolean setCurrentProxyScriptUrl(ProxyInfo proxy) { argument
169 if (!Uri.EMPTY.equals(proxy.getPacFileUrl())) {
170 if (proxy.getPacFileUrl().equals(mPacUrl) && (proxy.getPort() > 0)) {
175 mPacUrl = proxy.getPacFileUrl();
275 Log.e(TAG, "setCurrentProxyScript: no proxy service");
319 Log.e(TAG, "No proxy service");
355 Log.d(TAG, "Local proxy i
386 sendPacBroadcast(ProxyInfo proxy) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DBluetoothManagerService.java752 IBluetoothProfileServiceConnection proxy) {
781 addProxyMsg.obj = proxy;
788 IBluetoothProfileServiceConnection proxy) {
794 psc.removeProxy(proxy);
876 private void addProxy(IBluetoothProfileServiceConnection proxy) { argument
877 mProxies.register(proxy);
880 proxy.onServiceConnected(mClassName, mService);
882 Slog.e(TAG, "Unable to connect to proxy", e);
893 private void removeProxy(IBluetoothProfileServiceConnection proxy) { argument
894 if (proxy !
751 bindBluetoothProfileService(int bluetoothProfile, IBluetoothProfileServiceConnection proxy) argument
787 unbindBluetoothProfileService(int bluetoothProfile, IBluetoothProfileServiceConnection proxy) argument
[all...]
H A DConnectivityService.java286 * used internally to reload global proxy settings
428 // track the current default http proxy - tell the world if we get a new one (real change)
433 // track the global proxy.
908 // Watch for global HTTP proxy changes.
1735 // load the global proxy at startup
3189 // of proxy info to all the JVMs.
3216 // (e.g. if mGlobalProxy==null fall back to network-specific proxy, if network-specific
3217 // proxy is null then there is no proxy in place).
3218 private ProxyInfo canonicalizeProxyInfo(ProxyInfo proxy) { argument
3326 handleApplyDefaultProxy(ProxyInfo proxy) argument
3397 sendProxyBroadcast(ProxyInfo proxy) argument
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DA2dpProfile.java59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
61 mService = (BluetoothA2dp) proxy;
210 Log.w(TAG, "Error cleaning up A2DP proxy", t);
H A DA2dpSinkProfile.java59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
61 mService = (BluetoothA2dpSink) proxy;
219 Log.w(TAG, "Error cleaning up A2DP proxy", t);
H A DHeadsetProfile.java62 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
64 mService = (BluetoothHeadset) proxy;
223 Log.w(TAG, "Error cleaning up HID proxy", t);
H A DHfpClientProfile.java63 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
65 mService = (BluetoothHeadsetClient) proxy;
229 Log.w(TAG, "Error cleaning up HfpClient proxy", t);
H A DHidProfile.java54 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
56 mService = (BluetoothInputDevice) proxy;
197 Log.w(TAG, "Error cleaning up HID proxy", t);
H A DMapProfile.java62 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
64 mService = (BluetoothMap) proxy;
209 Log.w(TAG, "Error cleaning up MAP proxy", t);
H A DPanProfile.java55 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
57 mService = (BluetoothPan) proxy;
178 Log.w(TAG, "Error cleaning up PAN proxy", t);
H A DPbapClientProfile.java59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
63 mService = (BluetoothPbapClient) proxy;
231 Log.w(TAG, "Error cleaning up PBAP Client proxy", t);
H A DPbapServerProfile.java56 public void onServiceConnected(BluetoothPbap proxy) { argument
58 mService = (BluetoothPbap) proxy;
144 Log.w(TAG, "Error cleaning up PBAP proxy", t);
H A DSapProfile.java61 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
63 mService = (BluetoothSap) proxy;
212 Log.w(TAG, "Error cleaning up SAP proxy", t);

Completed in 493 milliseconds

12