Searched refs:azNew (Results 1 – 4 of 4) sorted by relevance
57 char **azNew; in sqlite3_get_table_cb() local59 azNew = sqlite3Realloc( p->azResult, sizeof(char*)*p->nAlloc ); in sqlite3_get_table_cb()60 if( azNew==0 ) goto malloc_failed; in sqlite3_get_table_cb()61 p->azResult = azNew; in sqlite3_get_table_cb()167 char **azNew; in sqlite3_get_table() local168 azNew = sqlite3Realloc( res.azResult, sizeof(char*)*res.nData ); in sqlite3_get_table()169 if( azNew==0 ){ in sqlite3_get_table()174 res.azResult = azNew; in sqlite3_get_table()
10312 char **azNew; local10314 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);10315 shell_check_oom(azNew);10317 azResult = azNew;
196 char **azNew; in tableColumnList() local198 azNew = sqlite3_realloc64(azCol, nAlloc*sizeof(azCol[0])); in tableColumnList()199 if( azNew==0 ) goto col_oom; in tableColumnList()200 azCol = azNew; in tableColumnList()
1089 char **azNew; in rbuAllocateIterArrays() local1091 azNew = (char**)rbuMalloc(p, nByte); in rbuAllocateIterArrays()1092 if( azNew ){ in rbuAllocateIterArrays()1093 pIter->azTblCol = azNew; in rbuAllocateIterArrays()1094 pIter->azTblType = &azNew[nCol]; in rbuAllocateIterArrays()