Lines Matching refs:azResult
112123 char **azResult; /* Accumulated output */
112154 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
112156 p->azResult = azNew;
112167 p->azResult[p->nData++] = z;
112190 p->azResult[p->nData++] = z;
112235 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
112236 if( res.azResult==0 ){
112240 res.azResult[0] = 0;
112242 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
112243 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
112245 sqlite3_free_table(&res.azResult[1]);
112258 sqlite3_free_table(&res.azResult[1]);
112263 azNew = sqlite3_realloc64( res.azResult, sizeof(char*)*res.nData );
112265 sqlite3_free_table(&res.azResult[1]);
112269 res.azResult = azNew;
112271 *pazResult = &res.azResult[1];
112281 char **azResult /* Result returned from sqlite3_get_table() */
112283 if( azResult ){
112285 azResult--;
112286 assert( azResult!=0 );
112287 n = SQLITE_PTR_TO_INT(azResult[0]);
112288 for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
112289 sqlite3_free(azResult);