Home
last modified time | relevance | path

Searched refs:azNew (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dtable.c57 char **azNew; in sqlite3_get_table_cb() local
59 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() local
168 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()
H A Dshell.c.in10312 char **azNew; local
10314 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);
10315 shell_check_oom(azNew);
10317 azResult = azNew;
/sqlite-3.40.0/ext/misc/
H A Ddbdump.c196 char **azNew; in tableColumnList() local
198 azNew = sqlite3_realloc64(azCol, nAlloc*sizeof(azCol[0])); in tableColumnList()
199 if( azNew==0 ) goto col_oom; in tableColumnList()
200 azCol = azNew; in tableColumnList()
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c1089 char **azNew; in rbuAllocateIterArrays() local
1091 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()