OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StatementRef
(Results
1 - 2
of
2
) sorted by null
/external/chromium/app/sql/
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
...]
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
...]
Completed in 30 milliseconds