Lines Matching refs:sqlite3Malloc

9797 #define UNPACKED_NEED_FREE     0x0001  /* Memory is from sqlite3Malloc() */
10926 SQLITE_PRIVATE void *sqlite3Malloc(int);
14000 void *pTstAlloc = sqlite3Malloc(10); \
14170 pFile = (sqlite3_file *)sqlite3Malloc(pVfs->szOsFile);
16665 pNew = sqlite3Malloc(sizeof(*pNew));
18016 SQLITE_PRIVATE void *sqlite3Malloc(int n){
18047 return sqlite3Malloc(n);
18163 ** sqlite3Malloc() or sqlite3_malloc().
18183 ** Free memory previously obtained from sqlite3Malloc().
18233 return sqlite3Malloc(nBytes); /* IMP: R-28354-25769 */
18240 /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */
18292 void *p = sqlite3Malloc(n);
18360 p = sqlite3Malloc(n);
19166 bufpt = zExtra = sqlite3Malloc( n );
21505 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
21645 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
35130 ** back to sqlite3Malloc().
35153 ** it from sqlite3Malloc instead.
35155 p = sqlite3Malloc(nByte);
35251 ** exists, this function falls back to sqlite3Malloc().
38805 ** function allocates memory by calling sqlite3Malloc(). If an allocation
38846 zMasterJournal = sqlite3Malloc((int)nMasterJournal + nMasterPtr + 1);
40730 ** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or
40786 zPathname = sqlite3Malloc(nPathname*2);
42966 fileData = sqlite3Malloc(pageSize);
42995 return sqlite3Malloc(size);
47883 void *pKey = sqlite3Malloc( (int)pCur->nKey );
49055 char *zFullPathname = sqlite3Malloc(nFullPathname);
51819 pCellKey = sqlite3Malloc( nCell );
55122 sCheck.anRef = sqlite3Malloc( (sCheck.nPage+1)*sizeof(sCheck.anRef[0]) );
82218 z = sqlite3Malloc((int)nByte);
86653 *pzErrMsg = sqlite3Malloc(nErrMsg);
106957 pEngine = sqlite3ParserAlloc((void*(*)(size_t))sqlite3Malloc);
107924 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
110384 void **pNew = (void **)sqlite3Malloc(nArg*sizeof(void *)*2);