/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
D | ImageToProcess.java | 31 public final ImageProxy proxy; field in ImageToProcess 45 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation, in ImageToProcess() argument 47 this.proxy = proxy; in ImageToProcess() 60 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation, in ImageToProcess() argument 62 this(proxy, imageRotation, metadata, new Rect(0, 0, proxy.getWidth(), proxy.getHeight())); in ImageToProcess()
|
D | TaskChainedCompressImageToJpeg.java | 52 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop); in run() 53 final List<ImageProxy.Plane> planeList = img.proxy.getPlanes(); in run() 55 final TaskImage inputImage = new TaskImage(mImage.rotation, img.proxy.getWidth(), in run() 56 img.proxy.getHeight(), img.proxy.getFormat(), safeCrop); in run() 57 final TaskImage resultImage = new TaskImage(mImage.rotation, img.proxy.getWidth(), in run() 58 img.proxy.getHeight(), ImageFormat.JPEG , safeCrop); in run() 74 dataCopy = convertYUV420ImageToPackedNV21(img.proxy); in run()
|
D | TaskCompressImageToJpeg.java | 123 switch (img.proxy.getFormat()) { in run() 132 ByteBuffer origBuffer = img.proxy.getPlanes().get(0).getBuffer(); in run() 188 safeCrop = guaranteedSafeCrop(img.proxy, in run() 204 img.proxy.getFormat(), safeCrop); in run() 206 if(requiresCropOperation(img.proxy, safeCrop)) { in run() 212 img.proxy.getFormat(), null); in run() 237 safeCrop = guaranteedSafeCrop(img.proxy, img.crop); in run() 239 inputImage = new TaskImage(img.rotation, img.proxy.getWidth(), in run() 240 img.proxy.getHeight(), in run() 241 img.proxy.getFormat(), safeCrop); in run() [all …]
|
D | TaskPreviewChainedJpeg.java | 64 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop); in run() 76 logWrapper("TIMER_END Rendering preview YUV buffer available, w=" + img.proxy.getWidth() in run() 77 / subsample + " h=" + img.proxy.getHeight() / subsample + " of subsample " in run() 80 convertedImage = runSelectedConversion(img.proxy, safeCrop, subsample); in run()
|
D | TaskConvertImageToRGBPreview.java | 807 return new TaskImage(img.rotation, img.proxy.getWidth(), img.proxy.getHeight(), in calculateInputImage() 808 img.proxy.getFormat(), cropApplied); in calculateInputImage() 820 final Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop); in calculateResultImage() 868 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop); in run() 881 + img.proxy.getWidth() in run() 882 / subsample + " h=" + img.proxy.getHeight() / subsample + " of subsample " in run() 885 convertedImage = runSelectedConversion(img.proxy, safeCrop, subsample); in run()
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | DownloadCache.java | 129 TaskProxy proxy = new TaskProxy(); in download() local 145 task.addProxy(proxy); in download() 148 return proxy.get(jc); in download() 269 public void removeProxy(TaskProxy proxy) { in removeProxy() argument 271 Utils.assertTrue(mProxySet.remove(proxy)); in removeProxy() 280 public void addProxy(TaskProxy proxy) { in addProxy() argument 281 proxy.mTask = this; in addProxy() 282 mProxySet.add(proxy); in addProxy() 306 for (TaskProxy proxy : mProxySet) { in onFutureDone() 307 proxy.setResult(entry); in onFutureDone()
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
D | ConfigDialog.java | 139 if (mProfile.proxy != null) { in onCreate() 140 mProxyHost.setText(mProfile.proxy.getHost()); in onCreate() 141 int port = mProfile.proxy.getPort(); in onCreate() 196 !mProfile.routes.isEmpty() || (mProfile.proxy != null && in onCreate() 197 (!mProfile.proxy.getHost().isEmpty() || mProfile.proxy.getPort() != 0))) { in onCreate() 324 if (mProfile.proxy != null && (!mProfile.proxy.getHost().isEmpty() || in updateUiControls() 325 mProfile.proxy.getPort() != 0)) { in updateUiControls() 498 profile.proxy = new ProxyInfo(proxyHost, port, null); in getProfile() 500 profile.proxy = null; in getProfile()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/vpn2/ |
D | ConfigDialog.java | 139 if (mProfile.proxy != null) { in onCreate() 140 mProxyHost.setText(mProfile.proxy.getHost()); in onCreate() 141 int port = mProfile.proxy.getPort(); in onCreate() 196 !mProfile.routes.isEmpty() || (mProfile.proxy != null && in onCreate() 197 (!mProfile.proxy.getHost().isEmpty() || mProfile.proxy.getPort() != 0))) { in onCreate() 324 if (mProfile.proxy != null && (!mProfile.proxy.getHost().isEmpty() || in updateUiControls() 325 mProfile.proxy.getPort() != 0)) { in updateUiControls() 498 profile.proxy = new ProxyInfo(proxyHost, port, null); in getProfile() 500 profile.proxy = null; in getProfile()
|
/packages/services/Car/service/src/com/android/car/pm/ |
D | CarPackageManagerService.java | 392 for (AppBlockingPolicyProxy proxy : mProxies) { in release() 393 proxy.disconnect(); in release() 871 AppBlockingPolicyProxy proxy = new AppBlockingPolicyProxy(this, mContext, in startAppBlockingPolicies() local 873 proxy.connect(); in startAppBlockingPolicies() 874 proxies.add(proxy); in startAppBlockingPolicies() 882 public void onPolicyConnectionAndSet(AppBlockingPolicyProxy proxy, in onPolicyConnectionAndSet() argument 884 doHandlePolicyConnection(proxy, policy); in onPolicyConnectionAndSet() 887 public void onPolicyConnectionFailure(AppBlockingPolicyProxy proxy) { in onPolicyConnectionFailure() argument 888 doHandlePolicyConnection(proxy, null); in onPolicyConnectionFailure() 891 private void doHandlePolicyConnection(AppBlockingPolicyProxy proxy, in doHandlePolicyConnection() argument [all …]
|
/packages/apps/Settings/src/com/android/settings/ |
D | ProxySelector.java | 65 mView = inflater.inflate(R.layout.proxy, container, false); in onCreateView() 150 ProxyInfo proxy = cm.getGlobalProxy(); in populateFields() local 151 if (proxy != null) { in populateFields() 152 hostname = proxy.getHost(); in populateFields() 153 port = proxy.getPort(); in populateFields() 154 exclList = proxy.getExclusionListAsString(); in populateFields()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/ |
D | ProxySelector.java | 65 mView = inflater.inflate(R.layout.proxy, container, false); in onCreateView() 150 ProxyInfo proxy = cm.getGlobalProxy(); in populateFields() local 151 if (proxy != null) { in populateFields() 152 hostname = proxy.getHost(); in populateFields() 153 port = proxy.getPort(); in populateFields() 154 exclList = proxy.getExclusionListAsString(); in populateFields()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarBluetoothUserService.java | 184 public void onServiceConnected(int profile, BluetoothProfile proxy) { 192 mBluetoothA2dpSink = (BluetoothA2dpSink) proxy; 195 mBluetoothHeadsetClient = (BluetoothHeadsetClient) proxy; 198 mBluetoothPbapClient = (BluetoothPbapClient) proxy; 201 mBluetoothMapClient = (BluetoothMapClient) proxy; 204 mBluetoothPan = (BluetoothPan) proxy;
|
D | VmsPublisherService.java | 192 PublisherProxy proxy = mPublisherProxies.remove(publisherName); in onClientDisconnected() local 193 if (proxy != null) { in onClientDisconnected() 194 proxy.unregister(); in onClientDisconnected()
|
/packages/services/Car/car-lib/src/android/car/ |
D | CarProjectionManager.java | 511 ProjectionAccessPointCallbackProxy proxy = in startProjectionAccessPoint() local 514 mService.startProjectionAccessPoint(proxy.getMessenger(), mAccessPointProxyToken); in startProjectionAccessPoint() 515 mProjectionAccessPointCallbackProxy = proxy; in startProjectionAccessPoint() 547 ProjectionAccessPointCallbackProxy proxy; in stopProjectionAccessPoint() local 549 proxy = mProjectionAccessPointCallbackProxy; in stopProjectionAccessPoint() 552 if (proxy == null) { in stopProjectionAccessPoint()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
D | CustomInputStylePreference.java | 67 final Context context, final Listener proxy) { in newIncompleteSubtypePreference() argument 68 return new CustomInputStylePreference(context, null, proxy); in newIncompleteSubtypePreference() 72 final Listener proxy) { in CustomInputStylePreference() argument 76 mProxy = proxy; in CustomInputStylePreference()
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/ |
D | WifiConfigurationProvider.java | 324 ProxyInfo proxy = new ProxyInfo(proxyHost, proxyPort, proxyBypassHosts); in updateForProxy() local 325 wifiConf.setProxy(ProxySettings.STATIC, proxy); in updateForProxy() 327 ProxyInfo proxy = new ProxyInfo(pacUrl); in updateForProxy() local 328 wifiConf.setProxy(ProxySettings.PAC, proxy); in updateForProxy()
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
D | ProxyOutputStream.java | 39 public ProxyOutputStream(OutputStream proxy) { in ProxyOutputStream() argument 40 super(proxy); in ProxyOutputStream()
|
D | ProxyWriter.java | 41 public ProxyWriter(Writer proxy) { in ProxyWriter() argument 42 super(proxy); in ProxyWriter()
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
D | ProxyInputStream.java | 42 public ProxyInputStream(InputStream proxy) { in ProxyInputStream() argument 43 super(proxy); in ProxyInputStream()
|
D | ProxyReader.java | 42 public ProxyReader(Reader proxy) { in ProxyReader() argument 43 super(proxy); in ProxyReader()
|
/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/ |
D | BluetoothDeviceManager.java | 42 public void onServiceConnected(int profile, BluetoothProfile proxy) { 48 new BluetoothHeadsetProxy((BluetoothHeadset) proxy); 51 mBluetoothHearingAidService = (BluetoothHearingAid) proxy;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/ |
D | MetadataReleasingImageQueue.java | 36 public MetadataReleasingImageProxy(ImageProxy proxy) { in MetadataReleasingImageProxy() argument 37 super(proxy); in MetadataReleasingImageProxy()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/ |
D | ForwardingImageProxy.java | 35 public ForwardingImageProxy(ImageProxy proxy) { in ForwardingImageProxy() argument 36 mImpl = proxy; in ForwardingImageProxy()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
D | CloseWhenDoneImageReader.java | 42 public ImageDecorator(ImageProxy proxy) { in ImageDecorator() argument 43 super(proxy); in ImageDecorator()
|
D | LoggingImageReader.java | 35 public LoggingImageProxy(ImageProxy proxy) { in LoggingImageProxy() argument 36 super(proxy); in LoggingImageProxy()
|