HomeSort by relevance Sort by last modified time
    Searched refs:executeForLong (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 107 return getSession().executeForLong(
SQLiteConnection.java 251 long value = executeForLong("PRAGMA page_size", null, null);
261 long value = executeForLong("PRAGMA wal_autocheckpoint", null, null);
263 executeForLong("PRAGMA wal_autocheckpoint=" + newValue, null, null);
271 long value = executeForLong("PRAGMA journal_size_limit", null, null);
273 executeForLong("PRAGMA journal_size_limit=" + newValue, null, null);
281 long value = executeForLong("PRAGMA foreign_keys", null, null);
583 public long executeForLong(String sql, Object[] bindArgs,
589 final int cookie = mRecentOperations.beginOperation("executeForLong", sql, bindArgs);
    [all...]
SQLiteSession.java 640 public long executeForLong(String sql, Object[] bindArgs, int connectionFlags,
652 return mConnection.executeForLong(sql, bindArgs, cancellationSignal); // might throw
    [all...]

Completed in 649 milliseconds