Lines Matching refs:zFormat
225 static void cmdlineError(const char *zFormat, ...){ in cmdlineError() argument
228 va_start(ap, zFormat); in cmdlineError()
229 vfprintf(stderr, zFormat, ap); in cmdlineError()
239 static void runtimeError(const char *zFormat, ...){ in runtimeError() argument
242 va_start(ap, zFormat); in runtimeError()
243 vfprintf(stderr, zFormat, ap); in runtimeError()
253 static sqlite3_stmt *db_vprepare(const char *zFormat, va_list ap){ in db_vprepare() argument
258 zSql = sqlite3_vmprintf(zFormat, ap); in db_vprepare()
268 static sqlite3_stmt *db_prepare(const char *zFormat, ...){ in db_prepare() argument
271 va_start(ap, zFormat); in db_prepare()
272 pStmt = db_vprepare(zFormat, ap); in db_prepare()
281 static void hash_one_query(const char *zFormat, ...){ in hash_one_query() argument
288 va_start(ap, zFormat); in hash_one_query()
289 pStmt = db_vprepare(zFormat, ap); in hash_one_query()