Searched refs:tableName (Results 1 - 4 of 4) sorted by relevance
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
H A D | AggregatorStorage.java | 37 DBHelper(Context context, String tableName, String tableCmd) { argument 39 mTableName = tableName;
|
H A D | AggregatorRecordStorage.java | 57 public AggregatorRecordStorage(Context context, String tableName, String [] columnNames) { argument 62 mTableName = tableName; 64 String tableCmd = "create table " + tableName + "( " + columnNames[0] + 71 mDbHelper = new DBHelper(context, tableName, tableCmd); 74 throw new RuntimeException("Can't open table: " + tableName);
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
H A D | SettingsProvider.java | 549 public SettingsCache cacheForTable(final int callingUser, String tableName) { argument 550 if (TABLE_SYSTEM.equals(tableName)) { 553 if (TABLE_SECURE.equals(tableName)) { 556 if (TABLE_GLOBAL.equals(tableName)) { 566 public void invalidateCache(final int callingUser, String tableName) { argument 567 SettingsCache cache = cacheForTable(callingUser, tableName);
|
/frameworks/base/core/java/android/database/ |
H A D | DatabaseUtils.java | 1011 * @param tableName the name of the table to insert into 1013 public InsertHelper(SQLiteDatabase db, String tableName) { argument 1015 mTableName = tableName;
|
Completed in 632 milliseconds