Home | History | Annotate | Download | only in dist

Lines Matching refs:pSize

953   int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
10188 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
10192 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
11399 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
17310 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){
17312 return id->pMethods->xFileSize(id, pSize);
30305 static int unixFileSize(sqlite3_file *id, i64 *pSize){
30315 *pSize = buf.st_size;
30323 if( *pSize==1 ) *pSize = 0;
37243 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
37248 assert( pSize!=0 );
37250 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
37257 *pSize = info.EndOfFile.QuadPart;
37271 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
37280 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
37281 pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
58744 ** Set *pSize to the size of the buffer needed to hold the value of
58746 ** to a valid entry, *pSize is set to 0.
58755 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){
58759 *pSize = pCur->info.nKey;
58764 ** Set *pSize to the number of bytes of data in the entry the
58775 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){
58782 *pSize = pCur->info.nPayload;
82990 static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
82994 rc = sqlite3OsFileSize(p->pReal, pSize);
82996 *pSize = (sqlite_int64) p->iSize;
83284 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
83286 *pSize = (sqlite_int64) p->endpoint.iOffset;
162289 static int rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
162291 return p->pReal->pMethods->xFileSize(p->pReal, pSize);