Searched refs:sqlite3_realloc (Results 1 – 4 of 4) sorted by relevance
/freebsd-src/contrib/sqlite3/ |
H A D | sqlite3ext.h | 478 #define sqlite3_realloc sqlite3_api->realloc macro
|
H A D | sqlite3.h | 1742 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, 3031 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so 3039 ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). 3041 ** ^The sqlite3_realloc(X,N) interface attempts to resize a 3043 ** ^If the X parameter to sqlite3_realloc(X,N) 3046 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or 3049 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation 3053 ** by sqlite3_realloc(X,N) and the prior allocation is freed. 3054 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the 3058 ** sqlite3_realloc( [all...] |
H A D | shell.c | 13476 char *zNew = (char*)sqlite3_realloc(pSlot->z, nByte*2); in idxRemFunc() 22493 azCol = sqlite3_realloc(azCol, nAlloc*sizeof(azCol[0])); in tableColumnList() 26404 azName = sqlite3_realloc(azName, (nName+1)*2*sizeof(char*)); in do_meta_command()
|
H A D | sqlite3.c | 2055 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, 3344 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so 3352 ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). 3354 ** ^The sqlite3_realloc(X,N) interface attempts to resize a 3356 ** ^If the X parameter to sqlite3_realloc(X,N) 3359 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or 3362 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation 3366 ** by sqlite3_realloc(X,N) and the prior allocation is freed. 3367 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the 3371 ** sqlite3_realloc( 30799 SQLITE_API void *sqlite3_realloc(void *pOld, int n){ sqlite3_realloc() function [all...] |