Home
last modified time | relevance | path

Searched refs:DIRECTION (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppProvider.java165 + BluetoothShare.MIMETYPE + " TEXT, " + BluetoothShare.DIRECTION + " INTEGER, " in createTable()
246 Integer dir = values.getAsInteger(BluetoothShare.DIRECTION); in insert()
250 if (values.getAsInteger(BluetoothShare.DIRECTION) == null) { in insert()
260 filteredValues.put(BluetoothShare.DIRECTION, dir); in insert()
DBluetoothOppTransferHistory.java98 direction = "(" + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_OUTBOUND in onCreate()
106 direction = "(" + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_INBOUND in onCreate()
124 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION in onCreate()
DBluetoothOppService.java576 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)), in insertShare()
703 info.mDirection = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in updateShare()
923 final String WHERE_INVISIBLE_COMPLETE_OUTBOUND = BluetoothShare.DIRECTION + "=" in trimDatabase()
931 final String WHERE_INVISIBLE_COMPLETE_INBOUND_FAILED = BluetoothShare.DIRECTION + "=" in trimDatabase()
940 final String WHERE_INBOUND_SUCCESS = BluetoothShare.DIRECTION + "=" in trimDatabase()
DBluetoothOppNotification.java82 + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_OUTBOUND + ")";
85 + BluetoothShare.DIRECTION + " == " + BluetoothShare.DIRECTION_INBOUND + ")";
232 final int directionIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION); in updateActiveNotification()
DBluetoothShare.java130 public static final String DIRECTION = "direction"; field in BluetoothShare
DBluetoothOppTransferAdapter.java72 int dir = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in bindView()
DBluetoothOppUtility.java89 .getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in fillRecord()
DTestActivity.java254 values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
DBluetoothOppObexServerSession.java272 values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_INBOUND); in onPut()
DBluetoothOppTransfer.java687 updateValues.put(BluetoothShare.DIRECTION, share.mDirection); in tickShareStatus()