Lines Matching defs:azResult
24654 char **azResult;
24706 ** as an array of nul-terminated strings in azResult[]. */
24708 azResult = 0;
24718 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);
24721 azResult = azNew;
24723 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
24724 shell_check_oom(azResult[nRow]);
24731 /* Pretty-print the contents of array azResult[] to the output */
24737 len = strlen30(azResult[i]);
24747 azResult[j] ? azResult[j]:"");
24753 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);
24754 sqlite3_free(azResult);