Lines Matching refs:azResult
10250 char **azResult; local
10302 ** as an array of nul-terminated strings in azResult[]. */
10304 azResult = 0;
10314 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);
10317 azResult = azNew;
10319 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
10320 shell_check_oom(azResult[nRow]);
10327 /* Pretty-print the contents of array azResult[] to the output */
10333 len = strlen30(azResult[i]);
10343 azResult[j] ? azResult[j]:"");
10349 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);
10350 sqlite3_free(azResult);