Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c194722 const char *zCsr = z; local
194724 while( *zCsr!='=' ){
194725 if( *zCsr=='\0' ) return 0;
194726 zCsr++;
194729 *pnKey = (int)(zCsr-z);
194730 zValue = sqlite3_mprintf("%s", &zCsr[1]);
195118 char *zCsr; /* Space for holding column names */ local
195379 zCsr = (char *)&p->abNotindexed[nCol];
195380 p->zName = zCsr;
195381 memcpy(zCsr, argv[2], nName);
[all …]
H A Dshell.c24532 char *zCsr = p->zTxt+p->n; in appendText() local
24533 *zCsr++ = quote; in appendText()
24535 *zCsr++ = zAppend[i]; in appendText()
24536 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
24538 *zCsr++ = quote; in appendText()
24539 p->n = (i64)(zCsr - p->zTxt); in appendText()
24540 *zCsr = '\0'; in appendText()