Lines Matching refs:zFormat
71 static void cmdlineError(const char *zFormat, ...){ in cmdlineError() argument
74 va_start(ap, zFormat); in cmdlineError()
75 vfprintf(stderr, zFormat, ap); in cmdlineError()
85 static void runtimeError(const char *zFormat, ...){ in runtimeError() argument
88 va_start(ap, zFormat); in runtimeError()
89 vfprintf(stderr, zFormat, ap); in runtimeError()
106 static void strPrintf(Str *p, const char *zFormat, ...){ in strPrintf() argument
111 va_start(ap, zFormat); in strPrintf()
112 sqlite3_vsnprintf(p->nAlloc-p->nUsed, p->z+p->nUsed, zFormat, ap); in strPrintf()
160 static sqlite3_stmt *db_vprepare(const char *zFormat, va_list ap){ in db_vprepare() argument
165 zSql = sqlite3_vmprintf(zFormat, ap); in db_vprepare()
175 static sqlite3_stmt *db_prepare(const char *zFormat, ...){ in db_prepare() argument
178 va_start(ap, zFormat); in db_prepare()
179 pStmt = db_vprepare(zFormat, ap); in db_prepare()