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.java306 int colIndex = c.getColumnIndex(colName); in getInt() local
307 if (colIndex == -1) { in getInt()
311 return c.getInt(colIndex); in getInt()
318 int colIndex = c.getColumnIndex(colName); in getString() local
319 if (colIndex == -1) { in getString()
323 return Strings.nullToEmpty(c.getString(colIndex)); in getString()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapContent.java1362 int colIndex = c.getColumnIndex(Contacts.DISPLAY_NAME); in getContactNameFromPhone() local
1365 name = c.getString(colIndex); in getContactNameFromPhone()
1477 int colIndex = c.getColumnIndex(Mms.Addr.ADDRESS); in getAddressMms() local
1480 addr = c.getString(colIndex); in getAddressMms()
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaProvider.java4078 final int colIndex = c.getColumnIndex(columnName); in getRedactedUriCursor() local
4079 if (c.getType(colIndex) == FIELD_TYPE_BLOB) { in getRedactedUriCursor()
4080 row.add(c.getBlob(colIndex)); in getRedactedUriCursor()
4082 row.add(c.getString(colIndex)); in getRedactedUriCursor()