Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c1934 static void appendText(ShellText *p, const char *zAppend, char quote){ in appendText() argument
1937 i64 nAppend = strlen30(zAppend); in appendText()
1943 if( zAppend[i]==quote ) len++; in appendText()
1957 *zCsr++ = zAppend[i]; in appendText()
1958 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
1964 memcpy(p->z+p->n, zAppend, nAppend); in appendText()
12708 char *zAppend = 0; in idxAppendText() local
12714 zAppend = sqlite3_vmprintf(zFmt, ap); in idxAppendText()
12715 if( zAppend ){ in idxAppendText()
12716 nAppend = STRLEN(zAppend); in idxAppendText()
[all …]
H A Dsqlite3.c202913 const char *zAppend, /* Pointer to data to append to buffer */
202917 nAppend = (int)strlen(zAppend);
202936 memcpy(&pStr->z[pStr->n], zAppend, nAppend);