Home
last modified time | relevance | path

Searched refs:sqlite3_msize (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Dstatus.c307 nByte += sqlite3_msize(pSchema->tblHash.ht); in sqlite3_db_status()
308 nByte += sqlite3_msize(pSchema->trigHash.ht); in sqlite3_db_status()
309 nByte += sqlite3_msize(pSchema->idxHash.ht); in sqlite3_db_status()
310 nByte += sqlite3_msize(pSchema->fkeyHash.ht); in sqlite3_db_status()
H A Dloadext.c404 sqlite3_msize,
H A Dmalloc.c384 sqlite3_uint64 sqlite3_msize(void *p){ in sqlite3_msize() function
H A Dsqlite3ext.h597 #define sqlite3_msize sqlite3_api->msize macro
H A Dsqlite.h.in2973 ** sqlite3_msize(X) returns the size of that memory allocation in bytes.
2974 ** ^The value returned by sqlite3_msize(X) might be larger than the number
2976 ** sqlite3_msize(X) returns zero. If X points to something that is not
2979 ** of sqlite3_msize(X) is undefined and possibly harmful.
3001 sqlite3_uint64 sqlite3_msize(void*);
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_vtab.c169 p->nAlloc = sqlite3_msize(p->a); in lsm1VblobEnlarge()
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c446 if( pSession ) pSession->nMalloc += sqlite3_msize(pRet); in sessionMalloc64()
456 if( pSession ) pSession->nMalloc -= sqlite3_msize(pFree); in sessionFree()