Searched refs:transInfo (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppReceiver.java | 130 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local 132 transInfo = BluetoothOppUtility.queryRecord(context, uri); in onReceive() 133 if (transInfo == null) { in onReceive() 138 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND in onReceive() 139 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) { in onReceive() 141 BluetoothOppUtility.openReceivedFile(context, transInfo.mFileName, in onReceive() 142 transInfo.mFileType, transInfo.mTimeStamp, uri); in onReceive() 219 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo(); in onReceive() local 220 transInfo = BluetoothOppUtility.queryRecord(context, intent.getData()); in onReceive() 221 if (transInfo == null) { in onReceive() [all …]
|
D | BluetoothOppTransferHistory.java | 312 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()
|
D | BluetoothOppUtility.java | 353 public static void retryTransfer(Context context, BluetoothOppTransferInfo transInfo) { in retryTransfer() argument 355 values.put(BluetoothShare.URI, transInfo.mFileUri); in retryTransfer() 356 values.put(BluetoothShare.MIMETYPE, transInfo.mFileType); in retryTransfer() 357 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr); in retryTransfer() 363 "Insert contentUri: " + contentUri + " to device: " + transInfo.mDeviceName); in retryTransfer()
|