Home
last modified time | relevance | path

Searched refs:zAppend (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Ddbdump.c94 static void appendText(DText *p, char const *zAppend, char quote){ in appendText() argument
97 int nAppend = (int)(strlen(zAppend) & 0x3fffffff); in appendText()
103 if( zAppend[i]==quote ) len++; in appendText()
122 *zCsr++ = zAppend[i]; in appendText()
123 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
129 memcpy(p->z+p->n, zAppend, nAppend); in appendText()
/sqlite-3.40.0/src/
H A Dtest8.c727 static void string_concat(char **pzStr, char *zAppend, int doFree, int *pRc){ in string_concat() argument
729 if( !zAppend && doFree && *pRc==SQLITE_OK ){ in string_concat()
738 zIn = sqlite3_mprintf("%s%s", zIn, zAppend); in string_concat()
741 zIn = sqlite3_mprintf("%s", zAppend); in string_concat()
749 sqlite3_free(zAppend); in string_concat()
H A Dtest_vfstrace.c281 static void strappend(char *z, int *pI, const char *zAppend){ in strappend() argument
283 while( zAppend[0] ){ z[i++] = *(zAppend++); } in strappend()
H A Dshell.c.in826 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
831 ** quote character for zAppend.
833 static void appendText(ShellText *p, const char *zAppend, char quote){ argument
836 i64 nAppend = strlen30(zAppend);
842 if( zAppend[i]==quote ) len++;
856 *zCsr++ = zAppend[i];
857 if( zAppend[i]==quote ) *zCsr++ = quote;
863 memcpy(p->z+p->n, zAppend, nAppend);
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c791 char *zAppend = 0; in idxAppendText() local
797 zAppend = sqlite3_vmprintf(zFmt, ap); in idxAppendText()
798 if( zAppend ){ in idxAppendText()
799 nAppend = STRLEN(zAppend); in idxAppendText()
802 if( zAppend && zRet ){ in idxAppendText()
804 memcpy(&zRet[nIn], zAppend, nAppend+1); in idxAppendText()
810 sqlite3_free(zAppend); in idxAppendText()
/sqlite-3.40.0/test/
H A Drollback.test109 set zAppend [binary format Ia*IIa8 $mj_pgno $mj [string length $mj] $cksum \
116 puts -nonewline $fd $zAppend
/sqlite-3.40.0/ext/fts3/
H A Dfts3_snippet.c603 const char *zAppend, /* Pointer to data to append to buffer */ in fts3StringAppend() argument
607 nAppend = (int)strlen(zAppend); in fts3StringAppend()
626 memcpy(&pStr->z[pStr->n], zAppend, nAppend); in fts3StringAppend()