Lines Matching defs:azQuoted
17841 char **azQuoted = 0;
17865 azQuoted = sqlite3_malloc64( nColumn*sizeof(char*) );
17866 shell_check_oom(azQuoted);
17867 memset(azQuoted, 0, nColumn*sizeof(char*) );
17916 sqlite3_free(azQuoted[i]);
17917 azQuoted[i] = quoted_column(pStmt,i);
17918 uz = (const unsigned char*)azQuoted[i];
18046 if( azQuoted ){
18047 for(i=0; i<nColumn; i++) sqlite3_free(azQuoted[i]);
18048 sqlite3_free(azQuoted);