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

/external/chromium/app/sql/
H A Dconnection.cc62 Connection::StatementRef::StatementRef() function in class:sql::Connection::StatementRef
67 Connection::StatementRef::StatementRef(Connection* connection, function in class:sql::Connection::StatementRef
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> Connectio
[all...]
H A Dconnection.h104 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> { class in class:sql::Connection
299 StatementRef();
300 StatementRef(Connectio
[all...]
/external/chromium_org/sql/
H A Dconnection.h84 class StatementRef; // Forward declaration, see real one below.
327 // If the |sql| has an error, an invalid, inert StatementRef is returned (and
345 scoped_refptr<StatementRef> GetCachedStatement(const StatementID& id,
357 scoped_refptr<StatementRef> GetUniqueStatement(const char* sql);
399 // Statement accesses StatementRef which we don't want to expose to everybody
438 // A StatementRef is a refcounted wrapper around a sqlite statement pointer.
447 // The Connection may revoke a StatementRef in some error cases, so callers
449 class SQL_EXPORT StatementRef : public base::RefCounted<StatementRef> { class in class:sql::Connection
459 StatementRef(Connectio
[all...]
H A Dconnection.cc160 Connection::StatementRef::StatementRef(Connection* connection, function in class:sql::Connection::StatementRef
170 Connection::StatementRef::~StatementRef() {
176 void Connection::StatementRef::Close(bool forced) {
670 scoped_refptr<Connection::StatementRef> Connection::GetCachedStatement(
684 scoped_refptr<StatementRef> statement = GetUniqueStatement(sql);
690 scoped_refptr<Connection::StatementRef> Connection::GetUniqueStatement(
696 return new StatementRef(NULL, NULL, poisoned_);
706 return new StatementRef(NUL
[all...]

Completed in 109 milliseconds