Home
last modified time | relevance | path

Searched refs:mDestination (Results 1 – 11 of 11) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperation.java54 private DocumentStack mDestination; field in FileOperation
65 mDestination = destination; in FileOperation()
82 return mDestination; in getDestination()
90 mDestination = destination; in setDestination()
102 builder.append(", destination=").append(mDestination.toString()); in appendInfoTo()
109 out.writeParcelable(mDestination, flag); in writeToParcel()
116 mDestination = in.readParcelable(FileOperation.class.getClassLoader()); in FileOperation()
309 private DocumentStack mDestination; field in FileOperation.Builder
327 mDestination = destination; in withDestination()
334 return new CopyOperation(mSrcs, mDestination); in build()
[all …]
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
DStartJobTask.java72 private final Uri mDestination; field in StartJobTask
85 mDestination = destination; in StartJobTask()
143 String address = mDestination.getHost() + mDestination.getPath(); in doInBackground()
165 " port=" + mDestination.getPort() + " mime=" + MIME_TYPE_PDF + in doInBackground()
169 result = mBackend.nativeStartJob(Backend.getIp(address), mDestination.getPort(), in doInBackground()
170 … MIME_TYPE_PDF, mJobParams, mCapabilities, files, null, mDestination.getScheme()); in doInBackground()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadInfo.java72 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION); in updateFromDatabase()
158 public int mDestination; field in DownloadInfo
379 return mDestination != Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING; in isRoamingAllowed()
418 pw.printPair("mDestination", mDestination); in dump()
446 && (mDestination == Downloads.Impl.DESTINATION_EXTERNAL || in shouldScanFile()
447 mDestination == Downloads.Impl.DESTINATION_FILE_URI || in shouldScanFile()
448 mDestination == Downloads.Impl.DESTINATION_NON_DOWNLOADMANAGER_DOWNLOAD) in shouldScanFile()
DDownloadThread.java691 if (mInfo.mDestination != Downloads.Impl.DESTINATION_FILE_URI) { in finalizeDestination()
696 mContext, mInfo.mDestination); in finalizeDestination()
698 mContext, mInfo.mDestination); in finalizeDestination()
787 mInfo.mDestination); in parseOkHeaders()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppBatch.java71 public final BluetoothDevice mDestination; field in BluetoothOppBatch
111 mDestination = adapter.getRemoteDevice(info.mDestination); in BluetoothOppBatch()
DBluetoothOppTransfer.java123 Log.v(TAG, "Device :" + device + "- OPP device: " + mBatch.mDestination in onReceive()
126 if ((device.equals(mBatch.mDestination)) in onReceive()
593 mDevice = mBatch.mDestination; in startConnectSession()
594 if (!mBatch.mDestination.sdpSearch(BluetoothUuid.ObexObjectPush)) { in startConnectSession()
599 mConnectThread = new SocketConnectThread(mBatch.mDestination, false, false, -1); in startConnectSession()
DBluetoothOppShareInfo.java55 public String mDestination; field in BluetoothOppShareInfo
80 mDestination = destination; in BluetoothOppShareInfo()
DBluetoothOppService.java635 Log.v(TAG, "DESTINAT: " + info.mDestination); in insertShare()
744 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION); in updateShare()
DBluetoothOppObexClientSession.java349 applyRemoteDeviceQuirks(request, mInfo.mDestination, fileInfo.mFileName); in sendFile()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DRenderingRequest.java37 private Rect mDestination = null; field in RenderingRequest
183 return mDestination; in getDestination()
187 mDestination = destination; in setDestination()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/services/
DFileOperationServiceTest.java384 private final DocumentStack mDestination; field in FileOperationServiceTest.TestFileOperation
391 mDestination = destination; in TestFileOperation()
397 service, listener, id, mOpType, mDestination, mSrcs, mJobRunnable, features); in createJob()