OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StatementRef
(Results
1 - 8
of
8
) 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) {
/external/chromium_org/sql/
connection.h
84
class
StatementRef
; // Forward declaration, see real one below.
332
// If the |sql| has an error, an invalid, inert
StatementRef
is returned (and
350
scoped_refptr<
StatementRef
> GetCachedStatement(const StatementID& id,
362
scoped_refptr<
StatementRef
> GetUniqueStatement(const char* sql);
415
// Statement accesses
StatementRef
which we don't want to expose to everybody
453
// A
StatementRef
is a refcounted wrapper around a sqlite statement pointer.
462
// The Connection may revoke a
StatementRef
in some error cases, so callers
464
class SQL_EXPORT
StatementRef
: public base::RefCounted<
StatementRef
> {
474
StatementRef
(Connection* connection, sqlite3_stmt* stmt, bool was_valid)
[
all
...]
statement.h
50
explicit Statement(scoped_refptr<Connection::
StatementRef
> ref);
55
void Assign(scoped_refptr<Connection::
StatementRef
> ref);
58
// the default constructor, releasing the
StatementRef
.
179
scoped_refptr<Connection::
StatementRef
> ref_;
connection.cc
160
Connection::
StatementRef
::
StatementRef
(Connection* connection,
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
(NULL, NULL, false)
[
all
...]
statement.cc
18
: ref_(new Connection::
StatementRef
(NULL, NULL, false)),
23
Statement::Statement(scoped_refptr<Connection::
StatementRef
> ref)
36
void Statement::Assign(scoped_refptr<Connection::
StatementRef
> ref) {
42
Assign(new Connection::
StatementRef
(NULL, NULL, false));
Completed in 392 milliseconds