Home
last modified time | relevance | path

Searched refs:sqlite3_mprintf (Results 1 – 6 of 6) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dshell.c2004 zSql = sqlite3_mprintf("PRAGMA \"%w\".table_info=%Q;", in shellFakeSchema()
2093 sqlite3_result_text(pCtx, sqlite3_mprintf("/* %s */", zFake), in shellModuleSchema()
2146 z = sqlite3_mprintf("%.*s \"%w\".%s", n+7, zIn, zSchema, zIn+n+8); in shellAddSchemaName()
2148 z = sqlite3_mprintf("%.*s %s.%s", n+7, zIn, zSchema, zIn+n+8); in shellAddSchemaName()
2156 z = sqlite3_mprintf("%s\n/* %s */", zIn, zFake); in shellAddSchemaName()
2158 z = sqlite3_mprintf("%z\n/* %s */", z, zFake); in shellAddSchemaName()
3446 char *zMsg = sqlite3_mprintf("error SQL statement [%s]: %s", in sha3QueryFunc()
3454 char *zMsg = sqlite3_mprintf("non-query: [%s]", sqlite3_sql(pStmt)); in sha3QueryFunc()
6174 pVTab->zErrMsg = sqlite3_mprintf( in seriesBestIndex()
6257 *pzErrMsg = sqlite3_mprintf( in sqlite3_series_init()
[all...]
H A Dsqlite3.c1334 ** of the char** argument point to a string obtained from [sqlite3_mprintf()]
3289 ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
3319 SQLITE_API char *sqlite3_mprintf(const char*,...);
6808 ** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
7566 ** point to an appropriate error message (obtained from [sqlite3_mprintf()])
7942 ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
7951 char *zErrMsg; /* Error message from sqlite3_mprintf() */
32380 SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){ sqlite3_mprintf() function
[all...]
H A Dsqlite3ext.h469 #define sqlite3_mprintf sqlite3_api->mprintf macro
H A Dsqlite3.h1021 ** of the char** argument point to a string obtained from [sqlite3_mprintf()]
2976 ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
3006 SQLITE_API char *sqlite3_mprintf(const char*,...);
6495 ** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
7253 ** point to an appropriate error message (obtained from [sqlite3_mprintf()])
7629 ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
7638 char *zErrMsg; /* Error message from sqlite3_mprintf() */
/freebsd-src/contrib/wpa/src/radius/
H A Dradius_server.c309 sql = sqlite3_mprintf("INSERT INTO authlog" in srv_log()
688 sql = sqlite3_mprintf("INSERT OR REPLACE INTO pending_tc (mac_addr,identity) VALUES (%Q,%Q)", in radius_srv_hs20_t_c_pending()
720 sql = sqlite3_mprintf("INSERT OR REPLACE INTO current_sessions(mac_addr,identity,start_time,nas,hs20_t_c_filtering) VALUES (%Q,%Q,%d,%Q,%u)", in radius_server_add_session()
766 sql = sqlite3_mprintf("UPDATE users SET last_msk=%Q WHERE identity=%Q", in db_update_last_msk()
872 sql = sqlite3_mprintf("INSERT INTO sim_provisioning(mobile_identifier_hash,imsi,mac_addr,eap_method,timestamp) VALUES (%Q,%Q,%Q,%Q,%u)", in radius_server_sim_provisioning_session()
1648 sql = sqlite3_mprintf("UPDATE current_sessions SET hs20_t_c_filtering=0, waiting_coa_ack=0, coa_ack_received=1 WHERE mac_addr=%Q", in radius_server_receive_coa_resp()
1651 sql = sqlite3_mprintf("UPDATE current_sessions SET waiting_coa_ack=0 WHERE mac_addr=%Q",
2760 sql = sqlite3_mprintf("SELECT * FROM current_sessions WHERE mac_addr=%Q", in radius_server_dac_request()
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2526 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable); in DbObjCmd()
3888 zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(p->db)); in DbMain()
3893 zErrMsg = sqlite3_mprintf("%s", sqlite3_errstr(rc)); in DbMain()