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

/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
H A DImageToProcess.java31 public final ImageProxy proxy; field in class:ImageToProcess
37 * @param proxy The underlying image to process.
43 * (0, 0)-(proxy.width, proxy.height) is a no-op.
45 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation, argument
47 this.proxy = proxy;
56 * @param proxy The underlying image to process.
60 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation, argument
62 this(proxy, imageRotatio
[all...]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DProxyOutputStream.java37 * @param proxy the OutputStream to delegate to
39 public ProxyOutputStream(OutputStream proxy) { argument
40 super(proxy);
41 // the proxy is stored in a protected superclass variable named 'out'
H A DProxyWriter.java39 * @param proxy the Writer to delegate to
41 public ProxyWriter(Writer proxy) { argument
42 super(proxy);
43 // the proxy is stored in a protected superclass variable named 'out'
/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DCloseWhenDoneImageReader.java42 public ImageDecorator(ImageProxy proxy) { argument
43 super(proxy);
H A DLoggingImageReader.java35 public LoggingImageProxy(ImageProxy proxy) { argument
36 super(proxy);
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/
H A DMetadataReleasingImageQueue.java36 public MetadataReleasingImageProxy(ImageProxy proxy) { argument
37 super(proxy);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DProxyInputStream.java40 * @param proxy the InputStream to delegate to
42 public ProxyInputStream(InputStream proxy) { argument
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
H A DProxyReader.java40 * @param proxy the Reader to delegate to
42 public ProxyReader(Reader proxy) { argument
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DForwardingImageProxy.java35 public ForwardingImageProxy(ImageProxy proxy) { argument
36 mImpl = proxy;
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
H A DBluetoothHeadsetFragment.java156 // Check if we have the proxy and connect the device.
158 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice);
170 // Check if we have the proxy and connect the device.
172 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice);
184 // Check if we have the proxy and connect the device.
186 Log.w(TAG, "HFP Profile proxy not available, cannot connect sco to " + mPickedDevice);
199 Log.w(TAG, "HFP Profile proxy not available, cannot disconnect sco to " +
213 Log.w(TAG, "HFP Profile proxy not available, cannot put the call on hold " +
255 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
259 mHfpClientProfile = (BluetoothHeadsetClient) proxy;
[all...]
H A DMapMceTestFragment.java207 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
209 mMapProfile = (BluetoothMapClient) proxy;
210 List<BluetoothDevice> connectedDevices = proxy.getConnectedDevices();
/packages/apps/Messaging/src/android/support/v7/mms/
H A DDefaultApnSettingsLoader.java90 public BaseApn(final String mmsc, final String proxy, final int port) { argument
92 mMmsProxy = proxy;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DCustomInputStylePreference.java67 final Context context, final Listener proxy) {
68 return new CustomInputStylePreference(context, null, proxy);
72 final Listener proxy) {
76 mProxy = proxy;
66 newIncompleteSubtypePreference( final Context context, final Listener proxy) argument
71 CustomInputStylePreference(final Context context, final InputMethodSubtype subtype, final Listener proxy) argument
H A DSeekBarDialogPreference.java62 public void setInterface(final ValueProxy proxy) { argument
63 mValueProxy = proxy;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadCache.java129 TaskProxy proxy = new TaskProxy();
145 task.addProxy(proxy);
148 return proxy.get(jc);
269 public void removeProxy(TaskProxy proxy) { argument
271 Utils.assertTrue(mProxySet.remove(proxy));
280 public void addProxy(TaskProxy proxy) { argument
281 proxy.mTask = this;
282 mProxySet.add(proxy);
306 for (TaskProxy proxy : mProxySet) {
307 proxy
[all...]
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DBugleApnSettingsLoader.java101 public BaseApn(final String mmsc, final String proxy, final int port) { argument
103 mMmsProxy = proxy;
368 final String proxy = gservices.getString(BugleGservicesKeys.MMS_PROXY_ADDRESS, null);
370 final Apn apn = BaseApn.from("mms", mmsc, proxy, Integer.toString(port));
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DBluetoothPeripheralHandover.java622 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
626 mHeadset = (BluetoothHeadset) proxy;
632 mA2dp = (BluetoothA2dp) proxy;
638 mInput = (BluetoothInputDevice) proxy;
/packages/services/Car/service/src/com/android/car/pm/
H A DCarPackageManagerService.java287 for (AppBlockingPolicyProxy proxy : mProxies) {
288 proxy.disconnect();
549 AppBlockingPolicyProxy proxy = new AppBlockingPolicyProxy(this, mContext,
551 proxy.connect();
552 proxies.add(proxy);
560 public void onPolicyConnectionAndSet(AppBlockingPolicyProxy proxy, argument
562 doHandlePolicyConnection(proxy, policy);
565 public void onPolicyConnectionFailure(AppBlockingPolicyProxy proxy) { argument
566 doHandlePolicyConnection(proxy, null);
569 private void doHandlePolicyConnection(AppBlockingPolicyProxy proxy, argument
[all...]
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnectionService.java191 //PhoneFactory proxy interface for testing
216 public void setSubscriptionManagerProxy(SubscriptionManagerProxy proxy) { argument
217 mSubscriptionManagerProxy = proxy;
221 public void setTelephonyManagerProxy(TelephonyManagerProxy proxy) { argument
222 mTelephonyManagerProxy = proxy;
226 public void setPhoneFactoryProxy(PhoneFactoryProxy proxy) { argument
227 mPhoneFactoryProxy = proxy;

Completed in 408 milliseconds