Searched refs:logStatement (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/ |
D | AccountsDbTest.java | 463 SQLiteStatement logStatement = mAccountsDb.getStatementForLogging(); in testDumpDebugTable() local 465 logStatement.bindLong(1, accId); in testDumpDebugTable() 466 logStatement.bindString(2, "action"); in testDumpDebugTable() 467 logStatement.bindString(3, "date"); in testDumpDebugTable() 468 logStatement.bindLong(4, 10); in testDumpDebugTable() 469 logStatement.bindString(5, "table"); in testDumpDebugTable() 470 logStatement.bindLong(6, insertionPoint); in testDumpDebugTable() 471 logStatement.execute(); in testDumpDebugTable()
|
/frameworks/opt/car/setupwizard/library/utils/src/com/android/car/setupwizardlib/ |
D | InitialLockSetupClient.java | 511 private static void logVerbose(String logStatement) { in logVerbose() argument 513 Log.v(TAG, logStatement); in logVerbose()
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 5488 SQLiteStatement logStatement = userAccount.accountsDb.getStatementForLogging(); 5489 if (logStatement == null) { 5492 logStatement.bindLong(1, accountId); 5493 logStatement.bindString(2, action); 5494 logStatement.bindString(3, mDateFormat.format(new Date())); 5495 logStatement.bindLong(4, callingUid); 5496 logStatement.bindString(5, tableName); 5497 logStatement.bindLong(6, userDebugDbInsertionPoint); 5499 logStatement.execute(); 5506 logStatement.clearBindings();
|