Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c194419 const char *zCsr = z; local
194421 while( *zCsr!='=' ){
194422 if( *zCsr=='\0' ) return 0;
194423 zCsr++;
194426 *pnKey = (int)(zCsr-z);
194427 zValue = sqlite3_mprintf("%s", &zCsr[1]);
194815 char *zCsr; /* Space for holding column names */ local
195076 zCsr = (char *)&p->abNotindexed[nCol];
195077 p->zName = zCsr;
195078 memcpy(zCsr, argv[2], nName);
[all …]
H A Dshell.c24494 char *zCsr = p->zTxt+p->n; in appendText() local
24495 *zCsr++ = quote; in appendText()
24497 *zCsr++ = zAppend[i]; in appendText()
24498 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
24500 *zCsr++ = quote; in appendText()
24501 p->n = (i64)(zCsr - p->zTxt); in appendText()
24502 *zCsr = '\0'; in appendText()