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.java132 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local
134 transInfo = BluetoothOppUtility.queryRecord(context, uri); in onReceive()
135 if (transInfo == null) { in onReceive()
140 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND in onReceive()
141 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) { in onReceive()
143 BluetoothOppUtility.openReceivedFile(context, transInfo.mFileName, in onReceive()
144 transInfo.mFileType, transInfo.mTimeStamp, uri); in onReceive()
221 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local
222 transInfo = BluetoothOppUtility.queryRecord(context, intent.getData()); in onReceive()
223 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()