Lines Matching defs:zFormat

8811 SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...);
8812 SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *zFormat, va_list);
9831 ** ^If logging is enabled, the zFormat string and subsequent arguments are
9839 ** The zFormat string must not be NULL.
9847 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...);
20747 SQLITE_PRIVATE void sqlite3TreeViewLine(TreeView*, const char *zFormat, ...);
24306 ** specifier zFormat.
24308 ** zFormat[] contains 4 characters for each integer converted, except for
24331 static int getDigits(const char *zDate, const char *zFormat, ...){
24338 va_start(ap, zFormat);
24340 char N = zFormat[0] - '0';
24341 char min = zFormat[1] - '0';
24345 assert( zFormat[2]>='a' && zFormat[2]<='f' );
24346 max = aMx[zFormat[2] - 'a'];
24347 nextC = zFormat[3];
24362 zFormat += 4;
25949 char *zFormat = (char *)sqlite3_user_data(context);
25970 strftime(zBuf, 20, zFormat, &sNow);
32323 SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){
32331 sqlite3_str_vappendf(&acc, zFormat, ap);
32343 SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){
32346 va_start(ap, zFormat);
32347 z = sqlite3VMPrintf(db, zFormat, ap);
32356 SQLITE_API char *sqlite3_vmprintf(const char *zFormat, va_list ap){
32362 if( zFormat==0 ){
32371 sqlite3_str_vappendf(&acc, zFormat, ap);
32380 SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){
32386 va_start(ap, zFormat);
32387 z = sqlite3_vmprintf(zFormat, ap);
32405 SQLITE_API char *sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){
32409 if( zBuf==0 || zFormat==0 ) {
32416 sqlite3_str_vappendf(&acc, zFormat, ap);
32420 SQLITE_API char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){
32425 if( zBuf==0 || zFormat==0 ) {
32432 va_start(ap,zFormat);
32433 sqlite3_str_vappendf(&acc, zFormat, ap);
32453 static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){
32458 sqlite3_str_vappendf(&acc, zFormat, ap);
32466 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){
32469 va_start(ap, zFormat);
32470 renderLogMsg(iErrCode, zFormat, ap);
32481 SQLITE_PRIVATE void sqlite3DebugPrintf(const char *zFormat, ...){
32486 va_start(ap,zFormat);
32487 sqlite3_str_vappendf(&acc, zFormat, ap);
32507 SQLITE_API void sqlite3_str_appendf(StrAccum *p, const char *zFormat, ...){
32509 va_start(ap,zFormat);
32510 sqlite3_str_vappendf(p, zFormat, ap);
32641 SQLITE_PRIVATE void sqlite3TreeViewLine(TreeView *p, const char *zFormat, ...){
32653 if( zFormat!=0 ){
32654 va_start(ap, zFormat);
32655 sqlite3_str_vappendf(&acc, zFormat, ap);
35093 ** If it is not NULL, string zFormat specifies the format of the
35094 ** error string. zFormat and any string tokens that follow it are
35098 ** should be called with err_code set to SQLITE_OK and zFormat set
35101 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
35105 if( zFormat==0 ){
35110 va_start(ap, zFormat);
35111 z = sqlite3VMPrintf(db, zFormat, ap);
35151 SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){
35158 va_start(ap, zFormat);
35159 zMsg = sqlite3VMPrintf(db, zFormat, ap);
81046 const char *zFormat,
81054 va_start(ap, zFormat);
81062 sqlite3_str_vappendf(&pCheck->errMsg, zFormat, ap);
84896 SQLITE_PRIVATE void sqlite3VdbeError(Vdbe *p, const char *zFormat, ...){
84899 va_start(ap, zFormat);
84900 p->zErrMsg = sqlite3VMPrintf(p->db, zFormat, ap);
86471 static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){
86477 p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap);
86480 SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){
86483 va_start(ap, zFormat);
86484 vdbeVComment(p, zFormat, ap);
86488 SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){
86492 va_start(ap, zFormat);
86493 vdbeVComment(p, zFormat, ap);
121666 SQLITE_PRIVATE void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){
121676 va_start(ap, zFormat);
121677 zSql = sqlite3VMPrintf(db, zFormat, ap);
128966 const char *zFormat;
128970 if( argc>=1 && (zFormat = (const char*)sqlite3_value_text(argv[0]))!=0 ){
128976 sqlite3_str_appendf(&str, zFormat, &x);
136737 void (*str_appendf)(sqlite3_str*, const char *zFormat, ...);
136738 void (*str_vappendf)(sqlite3_str*, const char *zFormat, va_list);
156029 const char *zFormat = "vtable constructor did not declare schema: %s";
156030 *pzErr = sqlite3MPrintf(db, zFormat, zModuleName);
186708 SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char **pzErr, const char *zFormat, ...){
186711 va_start(ap, zFormat);
186712 *pzErr = sqlite3_vmprintf(zFormat, ap);
186726 const char *zFormat, /* Format string for SQL */
186732 va_start(ap, zFormat);
186733 zSql = sqlite3_vmprintf(zFormat, ap);
186966 const char *zFormat, /* Printf format string to append */
186972 va_start(ap, zFormat);
186973 z = sqlite3_vmprintf(zFormat, ap);
204045 const char *zFormat;
204048 zFormat = zArg;
204050 zFormat = FTS3_MATCHINFO_DEFAULT;
204058 fts3GetMatchinfo(pContext, pCsr, zFormat);
205420 static void jsonPrintf(int N, JsonString *p, const char *zFormat, ...){
205423 va_start(ap, zFormat);
205424 sqlite3_vsnprintf(N, p->zBuf+p->nUsed, zFormat, ap);
213763 const char *zFormat;
213765 zFormat = azSql[i];
213769 zFormat = "INSERT INTO\"%w\".\"%w_rowid\"(rowid,nodeno)VALUES(?1,?2)"
213772 zSql = sqlite3_mprintf(zFormat, zDb, zPrefix);
251114 static void fts5SetVtabError(Fts5FullTable *p, const char *zFormat, ...){
251116 va_start(ap, zFormat);
251118 p->p.base.zErrMsg = sqlite3_vmprintf(zFormat, ap);
252885 const char *zFormat,
252892 va_start(ap, zFormat);
252893 zSql = sqlite3_vmprintf(zFormat, ap);