HomeSort by relevance Sort by last modified time
    Searched full:sqlite3_exec (Results 1 - 17 of 17) sorted by null

  /external/chromium/chrome/common/
sqlite_utils.cc 179 rv = sqlite3_exec(db_, command, NULL, NULL, NULL);
188 rv = sqlite3_exec(db_, command, NULL, NULL, NULL);
229 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL);
252 sqlite3_exec(db_, "ROLLBACK", NULL, NULL, NULL);
258 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL);
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 179 if (sqlite3_exec(db, cmd, get_user_cb, &hapd->tmp_eap_user, NULL) !=
189 if (sqlite3_exec(db, cmd, get_wildcard_cb, &hapd->tmp_eap_user,
  /external/chromium/app/sql/
connection.cc 208 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK;
217 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK;
  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.c 86 return sqlite3_exec(db, cmd, NULL, NULL, NULL) == SQLITE_OK;
101 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
127 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
192 if (sqlite3_exec(data->sqlite_db, cmd, NULL, NULL, &err) != SQLITE_OK)
230 if (sqlite3_exec(data->sqlite_db, cmd, get_pseudonym_cb, data, NULL) !=
292 if (sqlite3_exec(data->sqlite_db, cmd, NULL, NULL, &err) != SQLITE_OK)
347 if (sqlite3_exec(data->sqlite_db, cmd, get_reauth_cb, data, NULL) !=
366 sqlite3_exec(data->sqlite_db, cmd, NULL, NULL, NULL);
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 106 return sqlite3_exec(db, cmd, NULL, NULL, NULL) == SQLITE_OK;
123 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
203 if (sqlite3_exec(sqlite_db, cmd, get_milenage_cb, &db_tmp_milenage,
223 if (sqlite3_exec(sqlite_db, cmd, NULL, NULL, NULL) != SQLITE_OK) {
  /external/sqlite/dist/orig/
shell.c 1104 ** This is very similar to SQLite's built-in sqlite3_exec()
1112 /* (not the same as sqlite3_exec) */
    [all...]
sqlite3.c 852 ** The sqlite3_exec() interface is a convenience wrapper around
857 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
861 ** sqlite3_exec() is not NULL, then it is invoked for each result row
863 ** sqlite3_exec() is relayed through to the 1st argument of each
864 ** callback invocation. ^If the callback pointer to sqlite3_exec()
869 ** sqlite3_exec(), then execution of the current statement stops and
870 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
90836 SQLITE_API int sqlite3_exec( function
91284 #define sqlite3_exec macro
    [all...]
sqlite3.h 302 ** The sqlite3_exec() interface is a convenience wrapper around
307 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
311 ** sqlite3_exec() is not NULL, then it is invoked for each result row
313 ** sqlite3_exec() is relayed through to the 1st argument of each
314 ** callback invocation. ^If the callback pointer to sqlite3_exec()
319 ** sqlite3_exec(), then execution of the current statement stops and
320 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
325 ** of sqlite3_exec() after the error message string is no longer needed.
326 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
327 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter t
    [all...]
sqlite3ext.h 311 #define sqlite3_exec sqlite3_api->exec macro
  /external/sqlite/dist/
shell.c 1109 ** This is very similar to SQLite's built-in sqlite3_exec()
    [all...]
sqlite3.c 852 ** The sqlite3_exec() interface is a convenience wrapper around
857 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
861 ** sqlite3_exec() is not NULL, then it is invoked for each result row
863 ** sqlite3_exec() is relayed through to the 1st argument of each
864 ** callback invocation. ^If the callback pointer to sqlite3_exec()
869 ** sqlite3_exec(), then execution of the current statement stops and
870 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
90872 SQLITE_API int sqlite3_exec( function
91320 #define sqlite3_exec macro
    [all...]
sqlite3.h 302 ** The sqlite3_exec() interface is a convenience wrapper around
307 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
311 ** sqlite3_exec() is not NULL, then it is invoked for each result row
313 ** sqlite3_exec() is relayed through to the 1st argument of each
314 ** callback invocation. ^If the callback pointer to sqlite3_exec()
319 ** sqlite3_exec(), then execution of the current statement stops and
320 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
325 ** of sqlite3_exec() after the error message string is no longer needed.
326 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
327 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter t
    [all...]
sqlite3ext.h 311 #define sqlite3_exec sqlite3_api->exec macro
  /external/sqlite/android/
sqlite3_android.cpp 507 err = sqlite3_exec(handle, "PRAGMA encoding = 'UTF-16'", 0, 0, 0);
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 268 #define sqlite3_exec sqlite3_api->exec macro
sqlite3.h 252 ** The sqlite3_exec() interface is a convenient way of running one or more
254 ** SQL statements are passed in as the second parameter to sqlite3_exec().
271 ** The sqlite3_exec() interface is implemented in terms of
273 ** The sqlite3_exec() routine does nothing to the database that cannot be done
276 ** The first parameter to [sqlite3_exec()] must be an valid and open
280 ** [sqlite3_exec()] is running.
286 ** The SQL statement text in the 2nd parameter to [sqlite3_exec()]
287 ** must remain unchanged while [sqlite3_exec()] is running.
293 int sqlite3_exec(
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 1378 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result,
1393 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result,
    [all...]

Completed in 1364 milliseconds