Home
last modified time | relevance | path

Searched refs:transInfo (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppReceiver.java131 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local
133 transInfo = BluetoothOppUtility.queryRecord(context, uri); in onReceive()
134 if (transInfo == null) { in onReceive()
139 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND in onReceive()
140 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) { in onReceive()
142 BluetoothOppUtility.openReceivedFile(context, transInfo.mFileName, in onReceive()
143 transInfo.mFileType, transInfo.mTimeStamp, uri); in onReceive()
220 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local
221 transInfo = BluetoothOppUtility.queryRecord(context, intent.getData()); in onReceive()
222 if (transInfo == null) { in onReceive()
[all …]
DBluetoothOppTransferHistory.java312 BluetoothOppTransferInfo transInfo = BluetoothOppUtility.queryRecord(this, contentUri); in openCompleteTransfer() local
313 if (transInfo == null) { in openCompleteTransfer()
317 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND in openCompleteTransfer()
318 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) { in openCompleteTransfer()
321 BluetoothOppUtility.openReceivedFile(this, transInfo.mFileName, transInfo.mFileType, in openCompleteTransfer()
322 transInfo.mTimeStamp, contentUri); in openCompleteTransfer()
DBluetoothOppUtility.java372 public static void retryTransfer(Context context, BluetoothOppTransferInfo transInfo) { in retryTransfer() argument
374 values.put(BluetoothShare.URI, transInfo.mFileUri); in retryTransfer()
375 values.put(BluetoothShare.MIMETYPE, transInfo.mFileType); in retryTransfer()
376 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr); in retryTransfer()
382 "Insert contentUri: " + contentUri + " to device: " + transInfo.mDeviceName); in retryTransfer()