| /src/lib/lua/sqlite/ |
| sqlite.c | 137 const char *sql; local 141 sql = luaL_checkstring(L, 2); 142 lua_pushinteger(L, sqlite3_prepare_v2(*db, sql, 143 (int)strlen(sql) + 1, stmt, NULL));
|
| /src/external/bsd/wpa/dist/hostapd/ |
| hlr_auc_gw.c | 123 const char *sql = local 134 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
|
| /src/external/bsd/wpa/dist/src/eap_server/ |
| eap_sim_db.c | 97 const char *sql = local 105 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { 118 const char *sql = local 131 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
|
| /src/usr.sbin/makemandb/ |
| apropos-utils.c | 92 const char *sql = "SELECT fts3_tokenizer(?, ?)"; local 95 rc = sqlite3_prepare_v2(db, sql, -1, &stmt, 0); 540 * generates sql query for matching the user entered query
|
| makemandb.c | 1703 char *sql = sqlite3_mprintf("DELETE FROM mandb " local 1708 sqlite3_exec(db, sql, NULL, NULL, &errmsg); 1709 sqlite3_free(sql);
|
| /src/external/bsd/wpa/dist/src/ap/ |
| hostapd.c | 1255 const char *sql = local 1266 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
|
| ieee802_1x.c | 692 char *sql; local 700 sql = "SELECT attr FROM radius_attributes WHERE sta=? AND (reqtype=? OR reqtype IS NULL);"; 701 if (sqlite3_prepare_v2(hapd->rad_attr_db, sql, os_strlen(sql), &stmt, 703 wpa_printf(MSG_ERROR, "DB: Failed to prepare SQL statement: %s", 717 "Skipping invalid attribute from SQL: %s", 721 wpa_printf(MSG_DEBUG, "Adding RADIUS attribute from SQL: %s", 729 "Could not add RADIUS attribute from SQL");
|
| /src/external/bsd/wpa/dist/src/radius/ |
| radius_server.c | 261 const char *sql = local 271 if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { 308 char *sql; local 309 sql = sqlite3_mprintf("INSERT INTO authlog" 316 if (sql) { 317 if (sqlite3_exec(sess->server->db, sql, NULL, NULL, 322 sqlite3_free(sql); 668 char *sql; local 688 sql = sqlite3_mprintf("INSERT OR REPLACE INTO pending_tc (mac_addr,identity) VALUES (%Q,%Q)", 691 if (!sql) 708 char *sql; local 739 char *sql = NULL; local 846 char *sql; local 1605 char *sql; local 2710 char *sql; local [all...] |
| /src/external/public-domain/sqlite/dist/ |
| sqlite3ext.h | 76 int (*complete)(const char*sql); 77 int (*complete16)(const void*sql); 207 const char *(*sql)(sqlite3_stmt*); member in struct:sqlite3_api_routines 557 #define sqlite3_sql sqlite3_api->sql
|
| sqlite3.c | 522 ** See also: SQL functions [sqlite_compileoption_used()] and 682 ** that allows an application to run multiple statements of SQL 686 ** semicolon-separate SQL statements passed into its 2nd argument, 690 ** coming out of the evaluated SQL statements. ^The 4th argument to 696 ** ^If an error occurs while evaluating the SQL statements passed into 710 ** without running any subsequent SQL statements. 724 ** SQL comments, then no SQL statements are evaluated and the database 734 ** <li> The application must not modify the SQL statement text passed into 740 const char *sql, /* SQL to be evaluated * 224519 SessionBuffer sql = {0,0,0}; local [all...] |