Home
last modified time | relevance | path

Searched refs:BluetoothShare (Results 1 – 23 of 23) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppService.java155 getContentResolver().registerContentObserver(BluetoothShare.CONTENT_URI, true, mObserver); in onCreate()
251 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + msg.arg1);
253 updateValues.put(BluetoothShare.URI, msg.obj.toString()); // update
254 updateValues.put(BluetoothShare.MIMETYPE, getContentResolver().getType(
264 Uri contentUri1 = Uri.parse(BluetoothShare.CONTENT_URI + "/" + msg.arg1);
438 Cursor cursor = getContentResolver().query(BluetoothShare.CONTENT_URI, null, null, in run()
439 null, BluetoothShare._ID); in run()
452 int idColumn = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in run()
561 String uriString = cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.URI)); in insertShare()
571 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare._ID)), in insertShare()
[all …]
DBluetoothOppProvider.java105 LIVE_FOLDER_PROJECTION_MAP.put(LiveFolders._ID, BluetoothShare._ID + " AS " in LIVE_FOLDER_PROJECTION_MAP.put()
107 LIVE_FOLDER_PROJECTION_MAP.put(LiveFolders.NAME, BluetoothShare.FILENAME_HINT + " AS " in LIVE_FOLDER_PROJECTION_MAP.put()
175 db.execSQL("CREATE TABLE " + DB_TABLE + "(" + BluetoothShare._ID in createTable()
176 + " INTEGER PRIMARY KEY AUTOINCREMENT," + BluetoothShare.URI + " TEXT, " in createTable()
177 + BluetoothShare.FILENAME_HINT + " TEXT, " + BluetoothShare._DATA + " TEXT, " in createTable()
178 + BluetoothShare.MIMETYPE + " TEXT, " + BluetoothShare.DIRECTION + " INTEGER, " in createTable()
179 + BluetoothShare.DESTINATION + " TEXT, " + BluetoothShare.VISIBILITY in createTable()
180 + " INTEGER, " + BluetoothShare.USER_CONFIRMATION + " INTEGER, " in createTable()
181 + BluetoothShare.STATUS + " INTEGER, " + BluetoothShare.TOTAL_BYTES in createTable()
182 + " INTEGER, " + BluetoothShare.CURRENT_BYTES + " INTEGER, " in createTable()
[all …]
DBluetoothOppNotification.java59 static final String status = "(" + BluetoothShare.STATUS + " == '192'" + ")";
61 static final String visible = "(" + BluetoothShare.VISIBILITY + " IS NULL OR "
62 + BluetoothShare.VISIBILITY + " == '" + BluetoothShare.VISIBILITY_VISIBLE + "'" + ")";
64 static final String confirm = "(" + BluetoothShare.USER_CONFIRMATION + " == '"
65 + BluetoothShare.USER_CONFIRMATION_CONFIRMED + "' OR "
66 + BluetoothShare.USER_CONFIRMATION + " == '"
67 + BluetoothShare.USER_CONFIRMATION_AUTO_CONFIRMED + "' OR "
68 + BluetoothShare.USER_CONFIRMATION + " == '"
69 + BluetoothShare.USER_CONFIRMATION_HANDOVER_CONFIRMED + "'" + ")";
71 static final String not_through_handover = "(" + BluetoothShare.USER_CONFIRMATION + " != '"
[all …]
DBluetoothOppUtility.java74 info.mID = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare._ID)); in queryRecord()
75 info.mStatus = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)); in queryRecord()
77 .getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in queryRecord()
79 .getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES)); in queryRecord()
81 .getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in queryRecord()
83 .getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)); in queryRecord()
85 .getColumnIndexOrThrow(BluetoothShare.DESTINATION)); in queryRecord()
88 .getColumnIndexOrThrow(BluetoothShare._DATA)); in queryRecord()
91 .getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)); in queryRecord()
97 info.mFileUri = cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.URI)); in queryRecord()
[all …]
DBluetoothOppObexServerSession.java84 private int mAccepted = BluetoothShare.USER_CONFIRMATION_PENDING;
179 if (mAccepted == BluetoothShare.USER_CONFIRMATION_DENIED) { in onPut()
268 values.put(BluetoothShare.FILENAME_HINT, name); in onPut()
269 values.put(BluetoothShare.TOTAL_BYTES, length.intValue()); in onPut()
270 values.put(BluetoothShare.MIMETYPE, mimeType); in onPut()
272 values.put(BluetoothShare.DESTINATION, destination); in onPut()
274 values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_INBOUND); in onPut()
275 values.put(BluetoothShare.TIMESTAMP, mTimestamp); in onPut()
279 if (!mServerBlocking && (mAccepted == BluetoothShare.USER_CONFIRMATION_CONFIRMED || in onPut()
280 mAccepted == BluetoothShare.USER_CONFIRMATION_AUTO_CONFIRMED)) { in onPut()
[all …]
DBluetoothOppTransferHistory.java96 if (dir == BluetoothShare.DIRECTION_OUTBOUND) { in onCreate()
98 direction = "(" + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_OUTBOUND in onCreate()
106 direction = "(" + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_INBOUND in onCreate()
110 String selection = BluetoothShare.STATUS + " >= '200' AND " + direction; in onCreate()
114 + BluetoothShare.VISIBILITY + " IS NULL OR " in onCreate()
115 + BluetoothShare.VISIBILITY + " == '" in onCreate()
116 + BluetoothShare.VISIBILITY_VISIBLE + "')"; in onCreate()
119 final String sortOrder = BluetoothShare.TIMESTAMP + " DESC"; in onCreate()
121 mTransferCursor = managedQuery(BluetoothShare.CONTENT_URI, new String[] { in onCreate()
122 "_id", BluetoothShare.FILENAME_HINT, BluetoothShare.STATUS, in onCreate()
[all …]
DBluetoothOppReceiver.java128 } else if (action.equals(BluetoothShare.INCOMING_FILE_CONFIRMATION_REQUEST_ACTION)) { in onReceive()
151 if (transInfo.mDirection == BluetoothShare.DIRECTION_INBOUND in onReceive()
152 && BluetoothShare.isStatusSuccess(transInfo.mStatus)) { in onReceive()
175 in.putExtra("direction", BluetoothShare.DIRECTION_OUTBOUND); in onReceive()
182 in.putExtra("direction", BluetoothShare.DIRECTION_INBOUND); in onReceive()
189 in.putExtra("direction", BluetoothShare.DIRECTION_INBOUND); in onReceive()
198 int statusColumn = cursor.getColumnIndexOrThrow(BluetoothShare.STATUS); in onReceive()
200 int visibilityColumn = cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY); in onReceive()
203 .getColumnIndexOrThrow(BluetoothShare.USER_CONFIRMATION); in onReceive()
205 if (((userConfirmation == BluetoothShare.USER_CONFIRMATION_PENDING)) in onReceive()
[all …]
DBluetoothOppObexClientSession.java264 int status = BluetoothShare.STATUS_SUCCESS; in doSend()
271 status = BluetoothShare.STATUS_CANCELED; in doSend()
276 status = BluetoothShare.STATUS_CONNECTION_ERROR; in doSend()
278 if (status == BluetoothShare.STATUS_SUCCESS) { in doSend()
291 if (status == BluetoothShare.STATUS_SUCCESS) { in doSend()
325 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + mInfo.mId); in processShareInfo()
327 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName); in processShareInfo()
328 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength); in processShareInfo()
329 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype); in processShareInfo()
340 int status = BluetoothShare.STATUS_SUCCESS; in sendFile()
[all …]
DBluetoothOppTransfer.java151 markBatchFailed(BluetoothShare.STATUS_CONNECTION_ERROR); in handleMessage()
176 if (mBatch.mDirection == BluetoothShare.DIRECTION_OUTBOUND) { in handleMessage()
218 if (mBatch.mDirection == BluetoothShare.DIRECTION_OUTBOUND) { in handleMessage()
244 if (mBatch.mDirection == BluetoothShare.DIRECTION_OUTBOUND) { in handleMessage()
266 Intent in = new Intent(BluetoothShare.USER_CONFIRMATION_TIMEOUT_ACTION); in handleMessage()
277 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + share.mId); in markShareTimeout()
280 .put(BluetoothShare.USER_CONFIRMATION, BluetoothShare.USER_CONFIRMATION_TIMEOUT); in markShareTimeout()
296 if (BluetoothShare.isStatusError(mCurrentShare.mStatus)) { in markBatchFailed()
299 if (mCurrentShare.mDirection == BluetoothShare.DIRECTION_INBOUND in markBatchFailed()
313 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + info.mId); in markBatchFailed()
[all …]
DBluetoothOppReceiveFileInfo.java93 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + id); in generateFileInfo()
97 BluetoothShare.FILENAME_HINT, BluetoothShare.TOTAL_BYTES, BluetoothShare.MIMETYPE in generateFileInfo()
120 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_FILE_ERROR); in generateFileInfo()
125 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_ERROR_NO_SDCARD); in generateFileInfo()
135 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_ERROR_SDCARD_FULL); in generateFileInfo()
141 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_FILE_ERROR); in generateFileInfo()
148 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_FILE_ERROR); in generateFileInfo()
162 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_FILE_ERROR); in generateFileInfo()
175 updateValues.put(BluetoothShare.FILENAME_HINT, displayName); in generateFileInfo()
183 return new BluetoothOppReceiveFileInfo(BluetoothShare.STATUS_FILE_ERROR); in generateFileInfo()
[all …]
DBluetoothOppTransferAdapter.java71 int status = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)); in bindView()
72 int dir = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in bindView()
73 if (BluetoothShare.isStatusError(status)) { in bindView()
76 if (dir == BluetoothShare.DIRECTION_OUTBOUND) { in bindView()
86 cursor.getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)); in bindView()
95 int destinationColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION); in bindView()
102 long totalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES)); in bindView()
103 if (BluetoothShare.isStatusCompleted(status)) { in bindView()
106 if (BluetoothShare.isStatusError(status)) { in bindView()
110 if (dir == BluetoothShare.DIRECTION_INBOUND) { in bindView()
[all …]
DTestActivity.java237 values.put(BluetoothShare.URI, "content://media/external/images/media/" + media);
252 values.put(BluetoothShare.DESTINATION, address);
254 values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
257 values.put(BluetoothShare.TIMESTAMP, ts);
268 Uri contentUri = getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
279 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/"
287 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/"
295 updateValues.put(BluetoothShare.USER_CONFIRMATION,
296 BluetoothShare.USER_CONFIRMATION_CONFIRMED);
303 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/"
[all …]
DBluetoothOppManager.java436 values.put(BluetoothShare.URI, fileUri.toString()); in insertMultipleShare()
446 values.put(BluetoothShare.MIMETYPE, contentType); in insertMultipleShare()
447 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress()); in insertMultipleShare()
448 values.put(BluetoothShare.TIMESTAMP, ts); in insertMultipleShare()
450 values.put(BluetoothShare.USER_CONFIRMATION, in insertMultipleShare()
451 BluetoothShare.USER_CONFIRMATION_HANDOVER_CONFIRMED); in insertMultipleShare()
454 BluetoothShare.CONTENT_URI, values); in insertMultipleShare()
465 values.put(BluetoothShare.URI, mUri); in insertSingleShare()
466 values.put(BluetoothShare.MIMETYPE, mTypeOfSingleFile); in insertSingleShare()
467 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress()); in insertSingleShare()
[all …]
DBluetoothOppShareInfo.java95 if (mDirection == BluetoothShare.DIRECTION_OUTBOUND) { in isReadyToStart()
96 if (mStatus == BluetoothShare.STATUS_PENDING && mUri != null) { in isReadyToStart()
99 } else if (mDirection == BluetoothShare.DIRECTION_INBOUND) { in isReadyToStart()
100 if (mStatus == BluetoothShare.STATUS_PENDING) { in isReadyToStart()
109 if (!BluetoothShare.isStatusCompleted(mStatus)) { in hasCompletionNotification()
112 if (mVisibility == BluetoothShare.VISIBILITY_VISIBLE) { in hasCompletionNotification()
122 if (BluetoothShare.STATUS_RUNNING == mStatus) { in isObsolete()
DBluetoothOppIncomingFileConfirmActivity.java83 if (!BluetoothShare.USER_CONFIRMATION_TIMEOUT_ACTION.equals(intent.getAction())) {
123 BluetoothShare.USER_CONFIRMATION_TIMEOUT_ACTION)); in onCreate()
143 mUpdateValues.put(BluetoothShare.USER_CONFIRMATION, in onClick()
144 BluetoothShare.USER_CONFIRMATION_CONFIRMED); in onClick()
154 mUpdateValues.put(BluetoothShare.USER_CONFIRMATION, in onClick()
155 BluetoothShare.USER_CONFIRMATION_DENIED); in onClick()
166 mUpdateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN); in onKeyDown()
DBluetoothOppTransferActivity.java146 mIsComplete = BluetoothShare.isStatusCompleted(mTransInfo.mStatus); in onCreate()
153 getContentResolver().registerContentObserver(BluetoothShare.CONTENT_URI, true, in onCreate()
180 boolean isSuccess = BluetoothShare.isStatusSuccess(mTransInfo.mStatus); in displayWhichDialog()
181 boolean isComplete = BluetoothShare.isStatusCompleted(mTransInfo.mStatus); in displayWhichDialog()
183 if (direction == BluetoothShare.DIRECTION_INBOUND) { in displayWhichDialog()
194 } else if (direction == BluetoothShare.DIRECTION_OUTBOUND) { in displayWhichDialog()
303 if (mTransInfo.mStatus == BluetoothShare.STATUS_ERROR_SDCARD_FULL) { in customizeViewContent()
343 if (BluetoothShare.isStatusError(mTransInfo.mStatus)) { in customizeViewContent()
449 if (!mIsComplete && BluetoothShare.isStatusCompleted(mTransInfo.mStatus) in updateProgressbar()
DBluetoothOppBatch.java139 if (info.mStatus == BluetoothShare.STATUS_RUNNING) { in deleteShare()
140 info.mStatus = BluetoothShare.STATUS_CANCELED; in deleteShare()
141 if (info.mDirection == BluetoothShare.DIRECTION_INBOUND && info.mFilename != null) { in deleteShare()
169 if (info.mDirection == BluetoothShare.DIRECTION_INBOUND && info.mFilename != null) { in cancelBatch()
174 Constants.updateShareStatus(mContext, info.mId, BluetoothShare.STATUS_CANCELED); in cancelBatch()
212 if (share.mStatus == BluetoothShare.STATUS_PENDING) { in getPendingShare()
DConstants.java277 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + id); in updateShareStatus()
279 updateValues.put(BluetoothShare.STATUS, status); in updateShareStatus()
289 if (BluetoothShare.isStatusCompleted(status)) { in sendIntentIfCompleted()
290 Intent intent = new Intent(BluetoothShare.TRANSFER_COMPLETED_ACTION); in sendIntentIfCompleted()
DBluetoothShare.java44 public final class BluetoothShare implements BaseColumns { class
45 private BluetoothShare() { in BluetoothShare() method in BluetoothShare
DBluetoothOppLiveFolder.java73 Constants.ACTION_OPEN, BluetoothShare.CONTENT_URI)); in createLiveFolder()
DBluetoothOppHandoverReceiver.java80 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + id); in onReceive()
DBluetoothOppSendFileInfo.java62 null, null, 0, null, BluetoothShare.STATUS_FILE_ERROR);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapService.java64 import com.android.bluetooth.opp.BluetoothShare;