HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothOppSendFileInfo (Results 1 - 6 of 6) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java 53 public class BluetoothOppSendFileInfo {
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,
91 public BluetoothOppSendFileInfo(String data, String type, long length, int status) {
100 public static BluetoothOppSendFileInfo generateFileInfo(Context context, Uri uri,
194 return new BluetoothOppSendFileInfo(fileName, contentType, length, is, 0);
BluetoothOppUtility.java 65 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);
BluetoothOppObexClientSession.java 139 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) {
BluetoothOppManager.java 257 BluetoothOppSendFileInfo.generateFileInfo(mContext, uri, mimeType));
270 BluetoothOppSendFileInfo.generateFileInfo(mContext, uri, mimeType));
BluetoothOppTransfer.java 318 BluetoothOppSendFileInfo fileInfo
BluetoothOppService.java 609 BluetoothOppSendFileInfo sendFileInfo = BluetoothOppUtility.getSendFileInfo(
    [all...]

Completed in 452 milliseconds