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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java 112 Cursor metadataCursor = contentResolver.query(u, new String[] {
115 if (metadataCursor != null) {
117 if (metadataCursor.moveToFirst()) {
118 fileName = metadataCursor.getString(0);
119 length = metadataCursor.getInt(1);
123 metadataCursor.close();
BluetoothOppReceiveFileInfo.java 96 Cursor metadataCursor = contentResolver.query(contentUri, new String[] {
99 if (metadataCursor != null) {
101 if (metadataCursor.moveToFirst()) {
102 hint = metadataCursor.getString(0);
103 length = metadataCursor.getInt(1);
104 mimeType = metadataCursor.getString(2);
107 metadataCursor.close();
BluetoothOppUtility.java 134 Cursor metadataCursor = context.getContentResolver().query(BluetoothShare.CONTENT_URI,
139 if (metadataCursor == null) {
143 for (metadataCursor.moveToFirst(); !metadataCursor.isAfterLast(); metadataCursor
145 String fileName = metadataCursor.getString(0);
154 metadataCursor.close();
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java     [all...]

Completed in 67 milliseconds