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);
30287 static int unixFileSize(sqlite3_file *id, i64 *pSize){
30297 *pSize = buf.st_size;
30305 if( *pSize==1 ) *pSize = 0;
37225 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
37230 assert( pSize!=0 );
37232 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
37239 *pSize = info.EndOfFile.QuadPart;
37253 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
37262 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
37263 pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
58726 ** Set *pSize to the size of the buffer needed to hold the value of
58728 ** to a valid entry, *pSize is set to 0.
58737 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){
58741 *pSize = pCur->info.nKey;
58746 ** Set *pSize to the number of bytes of data in the entry the
58757 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){
58764 *pSize = pCur->info.nPayload;
82972 static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
82976 rc = sqlite3OsFileSize(p->pReal, pSize);
82978 *pSize = (sqlite_int64) p->iSize;
83266 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
83268 *pSize = (sqlite_int64) p->endpoint.iOffset;
162259 static int rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
162261 return p->pReal->pMethods->xFileSize(p->pReal, pSize);