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

  /external/chromium/app/sql/
connection.h 104 class StatementRef; // Forward declaration, see real one below.
235 scoped_refptr<StatementRef> GetCachedStatement(const StatementID& id,
243 scoped_refptr<StatementRef> GetUniqueStatement(const char* sql);
276 // Statement access StatementRef which we don't want to expose to erverybody
285 // A StatementRef is a refcounted wrapper around a sqlite statement pointer.
294 // The Connection may revoke a StatementRef in some error cases, so callers
296 class StatementRef : public base::RefCounted<StatementRef> {
299 StatementRef();
300 StatementRef(Connection* connection, sqlite3_stmt* stmt)
    [all...]
connection.cc 62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
224 scoped_refptr<Connection::StatementRef> Connection::GetCachedStatement(
238 scoped_refptr<StatementRef> statement = GetUniqueStatement(sql);
244 scoped_refptr<Connection::StatementRef> Connection::GetUniqueStatement
    [all...]
statement.h 47 explicit Statement(scoped_refptr<Connection::StatementRef> ref);
52 void Assign(scoped_refptr<Connection::StatementRef> ref);
157 scoped_refptr<Connection::StatementRef> ref_;
statement.cc 21 : ref_(new Connection::StatementRef),
25 Statement::Statement(scoped_refptr<Connection::StatementRef> ref)
37 void Statement::Assign(scoped_refptr<Connection::StatementRef> ref) {

Completed in 1227 milliseconds