Searched refs:zCsr (Results 1 – 2 of 2) sorted by relevance
194722 const char *zCsr = z; local194724 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 */ local195379 zCsr = (char *)&p->abNotindexed[nCol];195380 p->zName = zCsr;195381 memcpy(zCsr, argv[2], nName);[all …]
24532 char *zCsr = p->zTxt+p->n; in appendText() local24533 *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()