Lines Matching defs:sqlite3_msize
3293 ** sqlite3_msize(X) returns the size of that memory allocation in bytes.
3294 ** ^The value returned by sqlite3_msize(X) might be larger than the number
3296 ** sqlite3_msize(X) returns zero. If X points to something that is not
3299 ** of sqlite3_msize(X) is undefined and possibly harmful.
3321 SQLITE_API sqlite3_uint64 sqlite3_msize(void*);
23409 nByte += sqlite3_msize(pSchema->tblHash.ht);
23410 nByte += sqlite3_msize(pSchema->trigHash.ht);
23411 nByte += sqlite3_msize(pSchema->idxHash.ht);
23412 nByte += sqlite3_msize(pSchema->fkeyHash.ht);
29425 SQLITE_API sqlite3_uint64 sqlite3_msize(void *p){
132526 #define sqlite3_msize sqlite3_api->msize
133031 sqlite3_msize,
215961 if( pSession ) pSession->nMalloc += sqlite3_msize(pRet);
215971 if( pSession ) pSession->nMalloc -= sqlite3_msize(pFree);