Home
last modified time | relevance | path

Searched refs:logStatement (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountsDbTest.java465 SQLiteStatement logStatement = mAccountsDb.getStatementForLogging(); in testDumpDebugTable() local
467 logStatement.bindLong(1, accId); in testDumpDebugTable()
468 logStatement.bindString(2, "action"); in testDumpDebugTable()
469 logStatement.bindString(3, "date"); in testDumpDebugTable()
470 logStatement.bindLong(4, 10); in testDumpDebugTable()
471 logStatement.bindString(5, "table"); in testDumpDebugTable()
472 logStatement.bindLong(6, insertionPoint); in testDumpDebugTable()
473 logStatement.execute(); in testDumpDebugTable()
/aosp14/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java5382 SQLiteStatement logStatement = userAccount.accountsDb.getStatementForLogging();
5383 if (logStatement == null) {
5386 logStatement.bindLong(1, accountId);
5387 logStatement.bindString(2, action);
5388 logStatement.bindString(3, mDateFormat.format(new Date()));
5389 logStatement.bindLong(4, callingUid);
5390 logStatement.bindString(5, tableName);
5391 logStatement.bindLong(6, userDebugDbInsertionPoint);
5393 logStatement.execute();
5400 logStatement.clearBindings();