OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLITE_ROW
(Results
1 - 19
of
19
) sorted by null
/external/webkit/Source/WebCore/platform/sql/
SQLiteStatement.cpp
108
if (error != SQLITE_DONE && error !=
SQLITE_ROW
) {
156
if (step() !=
SQLITE_ROW
) {
282
if (prepareAndStep() !=
SQLITE_ROW
)
294
if (prepareAndStep() !=
SQLITE_ROW
)
305
if (prepareAndStep() !=
SQLITE_ROW
)
333
if (prepareAndStep() !=
SQLITE_ROW
)
344
if (prepareAndStep() !=
SQLITE_ROW
)
355
if (prepareAndStep() !=
SQLITE_ROW
)
366
if (prepareAndStep() !=
SQLITE_ROW
)
377
if (!m_statement && prepareAndStep() !=
SQLITE_ROW
)
[
all
...]
SQLiteDatabase.cpp
45
const int SQLResultRow =
SQLITE_ROW
;
267
return sql.step() ==
SQLITE_ROW
;
456
if (error !=
SQLITE_ROW
)
/external/chromium/chrome/browser/sync/util/
user_settings_win.cc
46
if (
SQLITE_ROW
== query.step()) {
user_settings.cc
118
CHECK(
SQLITE_ROW
== query_result);
198
CHECK(
SQLITE_ROW
== query_result);
206
CHECK(
SQLITE_ROW
== query_result);
300
CHECK(
SQLITE_ROW
== query_result);
340
if (
SQLITE_ROW
== query_result) {
405
while (
SQLITE_ROW
== query_result) {
435
if (query_result ==
SQLITE_ROW
)
449
if (
SQLITE_ROW
== query.step()) {
user_settings_posix.cc
54
if (
SQLITE_ROW
== query.step()) {
/frameworks/base/core/jni/
android_database_SQLiteStatement.cpp
69
if (err ==
SQLITE_ROW
) {
105
if (err ==
SQLITE_ROW
) {
129
if (err ==
SQLITE_ROW
) {
223
if (err ==
SQLITE_ROW
) {
android_database_SQLiteQuery.cpp
79
if (err ==
SQLITE_ROW
) {
android_database_SQLiteDatabase.cpp
153
if (err !=
SQLITE_ROW
) {
/external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc
58
} while (
SQLITE_ROW
== result);
99
if (
SQLITE_ROW
== query_result) {
233
if (
SQLITE_ROW
!= statement.step()) {
515
if (
SQLITE_ROW
!= statement.step()) {
574
while (
SQLITE_ROW
== (query_result = UnpackEntry(&statement, &kernel))) {
592
if (
SQLITE_ROW
!= query.step())
616
while (
SQLITE_ROW
== query.step()) {
630
if (
SQLITE_ROW
!= query.step())
749
while (query.step() ==
SQLITE_ROW
) {
790
if (
SQLITE_ROW
!= version_query.step()
[
all
...]
/external/chromium/app/sql/
statement_unittest.cc
98
EXPECT_EQ(
SQLITE_ROW
, db().GetErrorCode());
statement.cc
51
return CheckError(sqlite3_step(ref_->stmt())) ==
SQLITE_ROW
;
268
succeeded_ = (err == SQLITE_OK || err ==
SQLITE_ROW
|| err == SQLITE_DONE);
/external/chromium/chrome/common/
sqlite_utils.cc
120
return sqlite3_step(statement.get()) ==
SQLITE_ROW
;
143
while (s.step() ==
SQLITE_ROW
) {
162
return s.step() ==
SQLITE_ROW
;
294
if ((status ==
SQLITE_ROW
) || (status == SQLITE_DONE))
/external/javasqlite/src/main/java/SQLite/
Constants.java
44
public static final int
SQLITE_ROW
= 100; /* sqlite3_step() has another row ready */
/external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h
341
#define
SQLITE_ROW
100 /* sqlite3_step() has another row ready */
[
all
...]
/external/sqlite/dist/
sqlite3.h
411
#define
SQLITE_ROW
100 /* sqlite3_step() has another row ready */
[
all
...]
sqlite3.h.orig
408
#define
SQLITE_ROW
100 /* sqlite3_step() has another row ready */
[
all
...]
sqlite3.c
[
all
...]
sqlite3.c.orig
[
all
...]
/external/javasqlite/src/main/native/
sqlite_jni.c
[
all
...]
Completed in 1155 milliseconds