Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapContract.java386 public interface AccountColumns { interface in BluetoothMapContract
1129 AccountColumns._ID, AccountColumns.ACCOUNT_DISPLAY_NAME, AccountColumns.FLAG_EXPOSE,
1137 AccountColumns._ID,
1138 AccountColumns.ACCOUNT_DISPLAY_NAME,
1139 AccountColumns.FLAG_EXPOSE,
1140 AccountColumns.ACCOUNT_UCI,
1141 AccountColumns.ACCOUNT_UCI_PREFIX
DBluetoothMapIMProvider.java513 String accountId = values.getAsString(BluetoothMapContract.AccountColumns._ID); in update()
518 values.getAsInteger(BluetoothMapContract.AccountColumns.FLAG_EXPOSE); in update()
DBluetoothMapEmailProvider.java616 String accountId = values.getAsString(BluetoothMapContract.AccountColumns._ID); in update()
621 values.getAsInteger(BluetoothMapContract.AccountColumns.FLAG_EXPOSE); in update()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAccountLoader.java175 null, BluetoothMapContract.AccountColumns._ID + " DESC"); in parseAccounts()
178 null, BluetoothMapContract.AccountColumns._ID + " DESC"); in parseAccounts()
194 int idIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns._ID); in parseAccounts()
196 c.getColumnIndex(BluetoothMapContract.AccountColumns.ACCOUNT_DISPLAY_NAME); in parseAccounts()
197 int exposeIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns.FLAG_EXPOSE); in parseAccounts()
198 int uciIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns.ACCOUNT_UCI); in parseAccounts()
200 c.getColumnIndex(BluetoothMapContract.AccountColumns.ACCOUNT_UCI_PREFIX); in parseAccounts()
DBluetoothMapSettingsAdapter.java322 values.put(BluetoothMapContract.AccountColumns.FLAG_EXPOSE, ((account.mIsChecked) ? 1 : 0)); in updateAccount()
323 values.put(BluetoothMapContract.AccountColumns._ID, account.getId()); // get title in updateAccount()