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

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppReceiver.java143 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo();
145 transInfo = BluetoothOppUtility.queryRecord(context, uri);
146 if (transInfo == null) {
151 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND
152 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) {
154 BluetoothOppUtility.openReceivedFile(context, transInfo.mFileName,
155 transInfo.mFileType, transInfo.mTimeStamp, uri);
225 BluetoothOppTransferInfo transInfo = new BluetoothOppTransferInfo();
226 transInfo
[all...]
H A DBluetoothOppTransferHistory.java278 BluetoothOppTransferInfo transInfo = BluetoothOppUtility.queryRecord(this, contentUri);
279 if (transInfo == null) {
283 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND
284 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) {
287 BluetoothOppUtility.openReceivedFile(this, transInfo.mFileName, transInfo.mFileType,
288 transInfo.mTimeStamp, contentUri);
H A DBluetoothOppUtility.java299 public static void retryTransfer(Context context, BluetoothOppTransferInfo transInfo) { argument
301 values.put(BluetoothShare.URI, transInfo.mFileUri);
302 values.put(BluetoothShare.MIMETYPE, transInfo.mFileType);
303 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr);
308 transInfo.mDeviceName);

Completed in 33 milliseconds