Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppService.java846 String uriString = stringFromCursor(info.mUri.toString(), cursor, BluetoothShare.URI); in updateShare()
853 info.mHint = stringFromCursor(info.mHint, cursor, BluetoothShare.FILENAME_HINT); in updateShare()
854 info.mFilename = stringFromCursor(info.mFilename, cursor, BluetoothShare._DATA); in updateShare()
855 info.mMimetype = stringFromCursor(info.mMimetype, cursor, BluetoothShare.MIMETYPE); in updateShare()
857 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION); in updateShare()
972 private String stringFromCursor(String old, Cursor cursor, String column) { in stringFromCursor() method in BluetoothOppService