Lines Matching refs:azResult
112105 char **azResult; /* Accumulated output */
112136 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
112138 p->azResult = azNew;
112149 p->azResult[p->nData++] = z;
112172 p->azResult[p->nData++] = z;
112217 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
112218 if( res.azResult==0 ){
112222 res.azResult[0] = 0;
112224 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
112225 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
112227 sqlite3_free_table(&res.azResult[1]);
112240 sqlite3_free_table(&res.azResult[1]);
112245 azNew = sqlite3_realloc64( res.azResult, sizeof(char*)*res.nData );
112247 sqlite3_free_table(&res.azResult[1]);
112251 res.azResult = azNew;
112253 *pazResult = &res.azResult[1];
112263 char **azResult /* Result returned from sqlite3_get_table() */
112265 if( azResult ){
112267 azResult--;
112268 assert( azResult!=0 );
112269 n = SQLITE_PTR_TO_INT(azResult[0]);
112270 for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
112271 sqlite3_free(azResult);