Lines Matching refs:sqlite3_int64
71 sqlite3_int64 sz; /* Size of the file */
72 sqlite3_int64 szAlloc; /* Space allocated to aData */
73 sqlite3_int64 szMax; /* Maximum allowed size of the file */
106 static int memdbRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
107 static int memdbWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst);
108 static int memdbTruncate(sqlite3_file*, sqlite3_int64 size);
110 static int memdbFileSize(sqlite3_file*, sqlite3_int64 *pSize);
116 static int memdbFetch(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
117 static int memdbUnfetch(sqlite3_file*, sqlite3_int64 iOfst, void *p);
134 static int memdbCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*);
273 static int memdbEnlarge(MemStore *p, sqlite3_int64 newSz){ in memdbEnlarge()
430 sqlite3_int64 iLimit = *(sqlite3_int64*)pArg; in memdbFileControl()
439 *(sqlite3_int64*)pArg = iLimit; in memdbFileControl()
469 sqlite3_int64 iOfst, in memdbFetch()
486 static int memdbUnfetch(sqlite3_file *pFile, sqlite3_int64 iOfst, void *pPage){ in memdbUnfetch()
683 static int memdbCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ in memdbCurrentTimeInt64()
710 sqlite3_int64 *piSize, /* Write size here, if not NULL */ in sqlite3_serialize()
716 sqlite3_int64 sz; in sqlite3_serialize()
770 unsigned char *pTo = pOut + szPage*(sqlite3_int64)(pgno-1); in sqlite3_serialize()
792 sqlite3_int64 szDb, /* Number bytes in the deserialization */ in sqlite3_deserialize()
793 sqlite3_int64 szBuf, /* Total size of buffer pData[] */ in sqlite3_deserialize()