Searched defs:tableName (Results 1 - 4 of 4) sorted by relevance

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregatorRecordStorage.java57 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);
H A DAggregatorStorage.java37 DBHelper(Context context, String tableName, String tableCmd) { argument
39 mTableName = tableName;
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java1028 * @param tableName the name of the table to insert into
1030 public InsertHelper(SQLiteDatabase db, String tableName) { argument
1032 mTableName = tableName;
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java5019 private void logRecord(UserAccounts accounts, String action, String tableName) { argument
5020 logRecord(action, tableName, -1, accounts);
5023 private void logRecordWithUid(UserAccounts accounts, String action, String tableName, int uid) { argument
5024 logRecord(action, tableName, -1, accounts, uid);
5030 private void logRecord(String action, String tableName, long accountId, argument
5032 logRecord(action, tableName, accountId, userAccount, getCallingUid());
5038 private void logRecord(String action, String tableName, long accountId, argument
5043 private final String tableName;
5050 final String tableName,
5056 this.tableName
[all...]

Completed in 177 milliseconds