Searched refs:sqlite3_realloc (Results 1 - 4 of 4) sorted by relevance
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 477 #define sqlite3_realloc sqlite3_api->realloc macro
|
H A D | sqlite3.h | 1736 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, 2948 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so 2956 ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). 2958 ** ^The sqlite3_realloc(X,N) interface attempts to resize a 2960 ** ^If the X parameter to sqlite3_realloc(X,N) 2963 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or 2966 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation 2970 ** by sqlite3_realloc(X,N) and the prior allocation is freed. 2971 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the 2975 ** sqlite3_realloc( [all...] |
/third_party/sqlite/src/ |
H A D | shell.c | 10916 char *zNew = (char*)sqlite3_realloc(pSlot->z, nByte*2); in idxRemFunc() 18470 azCol = sqlite3_realloc(azCol, nAlloc*sizeof(azCol[0])); in tableColumnList() 22297 azName = sqlite3_realloc(azName, (nName+1)*2*sizeof(char*)); in do_meta_command()
|
H A D | sqlite3.c | 2046 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, 3261 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so 3269 ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). 3271 ** ^The sqlite3_realloc(X,N) interface attempts to resize a 3273 ** ^If the X parameter to sqlite3_realloc(X,N) 3276 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or 3279 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation 3283 ** by sqlite3_realloc(X,N) and the prior allocation is freed. 3284 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the 3288 ** sqlite3_realloc( 29605 SQLITE_API void *sqlite3_realloc(void *pOld, int n){ sqlite3_realloc() function 132400 #define sqlite3_realloc global() macro [all...] |
Completed in 154 milliseconds