Home
last modified time | relevance | path

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

/external/sqlite/dist/orig/
Dsqlite3.c80277 char *zCsr = zBuf;
80297 *(zCsr++) = c;
80298 sqlite3_snprintf(100, zCsr, "%d[", pMem->n);
80299 zCsr += sqlite3Strlen30(zCsr);
80301 sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF));
80302 zCsr += sqlite3Strlen30(zCsr);
80306 if( z<32 || z>126 ) *zCsr++ = '.';
80307 else *zCsr++ = z;
80309 *(zCsr++) = ']';
80311 sqlite3_snprintf(100, zCsr,"+%dz",pMem->u.nZero);
[all …]
Dshell.c761 char *zCsr = p->z+p->n; in appendText() local
762 *zCsr++ = quote; in appendText()
764 *zCsr++ = zAppend[i]; in appendText()
765 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
767 *zCsr++ = quote; in appendText()
768 p->n = (int)(zCsr - p->z); in appendText()
769 *zCsr = '\0'; in appendText()
/external/sqlite/dist/
Dsqlite3.c80293 char *zCsr = zBuf;
80313 *(zCsr++) = c;
80314 sqlite3_snprintf(100, zCsr, "%d[", pMem->n);
80315 zCsr += sqlite3Strlen30(zCsr);
80317 sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF));
80318 zCsr += sqlite3Strlen30(zCsr);
80322 if( z<32 || z>126 ) *zCsr++ = '.';
80323 else *zCsr++ = z;
80325 *(zCsr++) = ']';
80327 sqlite3_snprintf(100, zCsr,"+%dz",pMem->u.nZero);
[all …]
Dshell.c767 char *zCsr = p->z+p->n; in appendText() local
768 *zCsr++ = quote; in appendText()
770 *zCsr++ = zAppend[i]; in appendText()
771 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
773 *zCsr++ = quote; in appendText()
774 p->n = (int)(zCsr - p->z); in appendText()
775 *zCsr = '\0'; in appendText()