OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:metadataCursor
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java
112
Cursor
metadataCursor
;
114
metadataCursor
= contentResolver.query(uri, new String[] {
119
metadataCursor
= null;
125
if (
metadataCursor
!= null) {
127
if (
metadataCursor
.moveToFirst()) {
128
fileName =
metadataCursor
.getString(
129
metadataCursor
.getColumnIndex(OpenableColumns.DISPLAY_NAME));
130
length =
metadataCursor
.getLong(
131
metadataCursor
.getColumnIndex(OpenableColumns.SIZE));
135
metadataCursor
.close()
[
all
...]
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
.getLong(1);
104
mimeType =
metadataCursor
.getString(2);
107
metadataCursor
.close();
BluetoothOppUtility.java
144
Cursor
metadataCursor
= context.getContentResolver().query(BluetoothShare.CONTENT_URI,
149
if (
metadataCursor
== null) {
153
for (
metadataCursor
.moveToFirst(); !
metadataCursor
.isAfterLast();
metadataCursor
155
String fileName =
metadataCursor
.getString(0);
164
metadataCursor
.close();
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java
235
Cursor
metadataCursor
= null;
237
metadataCursor
= contentResolver.query(
240
if (
metadataCursor
!= null) {
242
if (
metadataCursor
.moveToNext()) {
243
attachment.setName(
metadataCursor
.getString(0));
244
attachment.size =
metadataCursor
.getInt(1);
247
metadataCursor
.close();
259
metadataCursor
= getOptionalColumn(contentResolver, contentUri,
261
if (
metadataCursor
!= null &&
metadataCursor
.moveToNext())
[
all
...]
Completed in 2503 milliseconds