Searched refs:BluetoothOppSendFileInfo (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppSendFileInfo.java53 public class BluetoothOppSendFileInfo { class
54 private static final String TAG = "BluetoothOppSendFileInfo";
61 static final BluetoothOppSendFileInfo SEND_FILE_INFO_ERROR = new BluetoothOppSendFileInfo(
80 public BluetoothOppSendFileInfo(String fileName, String type, long length, method in class:BluetoothOppSendFileInfo
91 public BluetoothOppSendFileInfo(String data, String type, long length, int status) { method in class:BluetoothOppSendFileInfo
100 public static BluetoothOppSendFileInfo generateFileInfo(Context context, Uri uri,
194 return new BluetoothOppSendFileInfo(fileName, contentType, length, is, 0);
H A DBluetoothOppUtility.java65 private static final ConcurrentHashMap<Uri, BluetoothOppSendFileInfo> sSendFileMap
66 = new ConcurrentHashMap<Uri, BluetoothOppSendFileInfo>();
311 static void putSendFileInfo(Uri uri, BluetoothOppSendFileInfo sendFileInfo) {
316 static BluetoothOppSendFileInfo getSendFileInfo(Uri uri) {
318 BluetoothOppSendFileInfo info = sSendFileMap.get(uri);
319 return (info != null) ? info : BluetoothOppSendFileInfo.SEND_FILE_INFO_ERROR;
324 BluetoothOppSendFileInfo info = sSendFileMap.remove(uri);
H A DBluetoothOppObexClientSession.java139 private BluetoothOppSendFileInfo mFileInfo = null;
308 private BluetoothOppSendFileInfo processShareInfo() {
311 BluetoothOppSendFileInfo fileInfo = BluetoothOppUtility.getSendFileInfo(mInfo.mUri);
313 if (V) Log.v(TAG, "BluetoothOppSendFileInfo get invalid file");
318 Log.v(TAG, "Generate BluetoothOppSendFileInfo:");
337 private int sendFile(BluetoothOppSendFileInfo fileInfo) {
H A DBluetoothOppManager.java257 BluetoothOppSendFileInfo.generateFileInfo(mContext, uri, mimeType));
270 BluetoothOppSendFileInfo.generateFileInfo(mContext, uri, mimeType));
H A DBluetoothOppTransfer.java318 BluetoothOppSendFileInfo fileInfo
H A DBluetoothOppService.java609 BluetoothOppSendFileInfo sendFileInfo = BluetoothOppUtility.getSendFileInfo(

Completed in 82 milliseconds