Lines Matching defs:azResult

3153 ** in an array named azResult.  Then azResult holds this content:
3156 ** azResult[0] = "Name";
3157 ** azResult[1] = "Age";
3158 ** azResult[2] = "Alice";
3159 ** azResult[3] = "43";
3160 ** azResult[4] = "Bob";
3161 ** azResult[5] = "28";
3162 ** azResult[6] = "Cindy";
3163 ** azResult[7] = "21";
146189 char **azResult; /* Accumulated output */
146191 u32 nAlloc; /* Slots allocated for azResult[] */
146194 u32 nData; /* Slots used in azResult[]. (nRow+1)*nColumn */
146205 int need; /* Slots needed in p->azResult[] */
146209 /* Make sure there is enough space in p->azResult to hold everything
146220 azNew = sqlite3Realloc( p->azResult, sizeof(char*)*p->nAlloc );
146222 p->azResult = azNew;
146233 p->azResult[p->nData++] = z;
146256 p->azResult[p->nData++] = z;
146301 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
146302 if( res.azResult==0 ){
146306 res.azResult[0] = 0;
146308 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
146309 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
146311 sqlite3_free_table(&res.azResult[1]);
146324 sqlite3_free_table(&res.azResult[1]);
146329 azNew = sqlite3Realloc( res.azResult, sizeof(char*)*res.nData );
146331 sqlite3_free_table(&res.azResult[1]);
146335 res.azResult = azNew;
146337 *pazResult = &res.azResult[1];
146347 char **azResult /* Result returned from sqlite3_get_table() */
146349 if( azResult ){
146351 azResult--;
146352 assert( azResult!=0 );
146353 n = SQLITE_PTR_TO_INT(azResult[0]);
146354 for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
146355 sqlite3_free(azResult);