Searched defs:zText (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvacuum.c54 static void appendText(dynStr *p, const char *zText, int nText){ argument
55 if( nText<0 ) nText = strlen(zText);
67 memcpy(&p->z[p->nUsed], zText, nText+1);
74 static void appendQuoted(dynStr *p, const char *zText){ argument
77 for(i=j=0; zText[i]; i++){
78 if( zText[i]=='\'' ){
79 appendText(p, &zText[j], i-j+1);
85 appendText(p, &zText[j], i-j);
H A Dprintf.c649 char *zText; /* The string collected so far */ member in struct:sgMprintf
652 int nAlloc; /* Amount of space allocated in zText */
670 if( pM->zText==pM->zBase ){
671 pM->zText = pM->xRealloc(0, pM->nAlloc);
672 if( pM->zText && pM->nChar ){
673 memcpy(pM->zText, pM->zBase, pM->nChar);
676 pM->zText = pM->xRealloc(pM->zText, pM->nAlloc);
680 if( pM->zText ){
682 memcpy(&pM->zText[p
[all...]

Completed in 83 milliseconds