• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:sqlite3_malloc

819 ** from [sqlite3_malloc()] and passed back through the 5th parameter.
1544 ** Every memory allocation request coming in through [sqlite3_malloc()]
1684 ** [sqlite3_malloc()] will be used to obtain the memory needed.</dd>
1702 ** SQLite goes to [sqlite3_malloc()] for the additional storage space.
1809 ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
2175 ** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling
2204 ** results into memory obtained from [sqlite3_malloc()].
2207 ** NULL pointer if [sqlite3_malloc()] is unable to allocate enough
2301 ** ^The sqlite3_malloc() routine returns a pointer to a block
2303 ** ^If sqlite3_malloc() is unable to obtain sufficient free
2305 ** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns
2309 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2317 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2324 ** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
2336 ** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
2354 ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
2361 SQLITE_API void *sqlite3_malloc(int);
2369 ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
2378 ** added by SQLite in its implementation of [sqlite3_malloc()],
2380 ** routines that [sqlite3_malloc()] may call.
3229 ** ^If sqlite3_malloc() fails during the processing of either routine
4049 ** from [sqlite3_malloc()] before it returns.
4249 ** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore,
4252 ** [sqlite3_malloc] and the pragma may attempt to free that memory
4255 ** made NULL or made to point to memory obtained from [sqlite3_malloc]
4574 ** obtained from [sqlite3_malloc()]. The calling function
4613 ** in an array that is obtained from [sqlite3_malloc()]. That memory
4774 char *idxStr; /* String, possibly obtained from sqlite3_malloc */
5309 ** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]
5379 #define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */
5513 ** using [sqlite3_malloc()], either directly or indirectly. The
5514 ** figure includes calls made to [sqlite3_malloc()] by the application
5523 ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
5537 ** buffer and where forced to overflow to [sqlite3_malloc()]. The
5560 ** buffer and where forced to overflow to [sqlite3_malloc()]. The values
8060 ** sqlite3_malloc() to obtain space for the file-handle structure.
8241 u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */
12228 void *p = sqlite3_malloc(10);
13613 return sqlite3_malloc(nBytes);
15838 ** Allocate memory. This routine is like sqlite3_malloc() except that it
15848 ** this amount. The only way to reach the limit is with sqlite3_malloc() */
15865 SQLITE_API void *sqlite3_malloc(int n){
15994 ** sqlite3Malloc() or sqlite3_malloc().
16265 ** returning control to the user) that has called sqlite3_malloc or
17175 ** Print into memory obtained from sqlite3_malloc(). Omit the internal
17192 ** Print into memory obtained from sqlite3_malloc()(). Omit the internal
17603 char *zMalloc; /* Dynamic buffer allocated by sqlite3_malloc() */
18098 ** from sqlite3_malloc().
18261 ** Memory to hold the UTF-8 string is obtained from sqlite3_malloc and must
19579 ** The hash table might fail to resize if sqlite3_malloc() fails or
19940 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free(). Those wrappers
22014 pNew = sqlite3_malloc( sizeof(*pNew) + (n+1) );
22505 pLock = sqlite3_malloc( sizeof(*pLock) );
22529 pOpen = sqlite3_malloc( sizeof(*pOpen) );
25075 pNew->lockingContext = pCtx = sqlite3_malloc( sizeof(*pCtx) );
25098 zLockFile = (char *)sqlite3_malloc(nFilename);
25398 pUnused = sqlite3_malloc(sizeof(*pUnused));
26193 ** sqlite3_malloc) and open the file named "path" in the file descriptor.
26204 pNew = (unixFile *)sqlite3_malloc(sizeof(unixFile));
26416 ** Store the conch filename in memory obtained from sqlite3_malloc().
26432 *pConchPath = conchPath = (char *)sqlite3_malloc(len + 8);
26547 pCtx = sqlite3_malloc( sizeof(*pCtx) );
26908 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free(). Those wrappers
29373 pV = sqlite3_malloc( (sz+7)/8 + 1 );
29374 pTmpSpace = sqlite3_malloc(BITVEC_SZ);
30294 apNew = (PgHdr1 **)sqlite3_malloc(sizeof(PgHdr1 *)*nNew);
30446 pCache = (PCache1 *)sqlite3_malloc(sizeof(PCache1));
32891 ** sqlite3_malloc() and pointed to by zMasterJournal.
45567 p = (sqlite3_backup *)sqlite3_malloc(sizeof(sqlite3_backup));
47827 ** the string is made into memory obtained from sqlite3_malloc().
47833 ** sqlite3_malloc, to be freed when the Vdbe is finalized.
47835 ** stored in memory that the caller has obtained from sqlite3_malloc. The
49846 ** not big enough, space is obtained from sqlite3_malloc().
52238 ** from sqlite3_malloc() and p->zErrMsg is made to point to that memory.
58786 FileChunk *pNew = sqlite3_malloc(sizeof(FileChunk));
71290 ** Allocate nByte bytes of space using sqlite3_malloc(). If the
75991 #define sqlite3_malloc sqlite3_api->malloc
76267 sqlite3_malloc,
83367 z = sqlite3_malloc( n );
83413 res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc );
94691 ** memory obtained from sqlite3_malloc() and to make *pzErrMsg point to that
95605 ** space for the lookaside memory is obtained from sqlite3_malloc().
99051 p = (Fts3Table*)sqlite3_malloc(nByte);
99132 char **pzErr /* OUT: sqlite3_malloc'd error message */
99142 char **pzErr /* OUT: sqlite3_malloc'd error message */
99217 *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor));
99858 aTmp = sqlite3_malloc(2*(n1+n2+1));
99920 char *aNew = sqlite3_malloc(nNew);
99985 apSegment = (Fts3SegReader **)sqlite3_malloc(sizeof(Fts3SegReader*)*nAlloc);
100213 aBuffer = sqlite3_malloc(nLeft+nRight+1);
100232 char *aBuffer = sqlite3_malloc(nRight+nLeft+1);
100840 pHash = sqlite3_malloc(sizeof(Fts3Hash));
101048 pRet = (Fts3Expr *)sqlite3_malloc(nByte);
101277 pRet = (Fts3Expr *)sqlite3_malloc(sizeof(Fts3Expr));
101457 Fts3Expr *pNot = sqlite3_malloc(sizeof(Fts3Expr));
101491 pAnd = sqlite3_malloc(sizeof(Fts3Expr));
101782 azCol = (char **)sqlite3_malloc(nCol*sizeof(char *));
101861 void *p = sqlite3_malloc(n);
102271 t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t));
102301 c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
103403 t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t));
103458 c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
103777 zVarlist = (char *)sqlite3_malloc(2*p->nColumn+2);
103912 p = sqlite3_malloc(sizeof(*p) + 100);
104458 pReader = (Fts3SegReader *)sqlite3_malloc(sizeof(Fts3SegReader) + nExtra);
104607 pReader = (Fts3SegReader *)sqlite3_malloc(nByte);
104891 pTree->aData = (char *)sqlite3_malloc(nReq);
104935 pNew = (SegmentNode *)sqlite3_malloc(sizeof(SegmentNode) + p->nNodeSize);
105082 pWriter = (SegmentWriter *)sqlite3_malloc(sizeof(SegmentWriter));
105088 pWriter->aData = (char *)sqlite3_malloc(p->nNodeSize);
105669 apSegment = (Fts3SegReader**)sqlite3_malloc(sizeof(Fts3SegReader *)*nSegment);
105953 ** from sqlite3_malloc(). After any memory allocation failure,
105969 p->z = sqlite3_malloc( p->nAlloc );
106354 pSnippet = (Snippet *)sqlite3_malloc(sizeof(Snippet));
106855 apList = sqlite3_malloc(
107171 g.aGlobal = (u32 *)sqlite3_malloc(sizeof(u32)*nMatchinfo);
107610 pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode) + pRtree->iNodeSize);
107649 pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode) + pRtree->iNodeSize);
107943 pCsr = (RtreeCursor *)sqlite3_malloc(sizeof(RtreeCursor));
108262 pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc);
108586 aCell = sqlite3_malloc(sizeof(RtreeCell)*nCell);
108997 aaSorted = (int **)sqlite3_malloc(nByte);
109094 aiUsed = sqlite3_malloc(sizeof(int)*nCell);
109174 aCell = sqlite3_malloc((sizeof(RtreeCell)+sizeof(int))*(nCell+1));
109416 aCell = (RtreeCell *)sqlite3_malloc(nCell * (
109933 pRtree = (Rtree *)sqlite3_malloc(sizeof(Rtree)+nDb+nName+2);
110447 zOutput = sqlite3_malloc(nOutput);
110663 p = (IcuTokenizer *)sqlite3_malloc(sizeof(IcuTokenizer)+n);
110717 pCsr = (IcuCursor *)sqlite3_malloc(