Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugStorageUtils.java303 int colIndex = c.getColumnIndex(colName); in getInt() local
304 if (colIndex == -1) { in getInt()
308 return c.getInt(colIndex); in getInt()
315 int colIndex = c.getColumnIndex(colName); in getString() local
316 if (colIndex == -1) { in getString()
320 return Strings.nullToEmpty(c.getString(colIndex)); in getString()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContent.java1410 int colIndex = c.getColumnIndex(Contacts.DISPLAY_NAME); in getContactNameFromPhone() local
1413 name = c.getString(colIndex); in getContactNameFromPhone()
1515 int colIndex = c.getColumnIndex(Mms.Addr.ADDRESS); in getAddressMms() local
1518 addr = c.getString(colIndex); in getAddressMms()
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaProvider.java2877 final int colIndex = c.getColumnIndex(columnName); in getRedactedUriCursor() local
2878 if (c.getType(colIndex) == FIELD_TYPE_BLOB) { in getRedactedUriCursor()
2879 row.add(c.getBlob(colIndex)); in getRedactedUriCursor()
2881 row.add(c.getString(colIndex)); in getRedactedUriCursor()