Lines Matching defs:pSize
1150 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
15118 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
24966 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){
24968 return id->pMethods->xFileSize(id, pSize);
35864 static int kvvfsFileSizeDb(sqlite3_file*, sqlite3_int64 *pSize);
35865 static int kvvfsFileSizeJrnl(sqlite3_file*, sqlite3_int64 *pSize);
36510 static int kvvfsFileSizeJrnl(sqlite3_file *pProtoFile, sqlite_int64 *pSize){
36513 *pSize = pFile->nJrnl;
36516 static int kvvfsFileSizeDb(sqlite3_file *pProtoFile, sqlite_int64 *pSize){
36520 *pSize = pFile->szDb;
36522 *pSize = kvvfsReadFileSize(pFile);
40689 static int unixFileSize(sqlite3_file *id, i64 *pSize){
40699 *pSize = buf.st_size;
40707 if( *pSize==1 ) *pSize = 0;
48156 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
48161 assert( pSize!=0 );
48163 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
48170 *pSize = info.EndOfFile.QuadPart;
48184 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
48193 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
48194 pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
51381 static int memdbFileSize(sqlite3_file*, sqlite3_int64 *pSize);
51628 static int memdbFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
51631 *pSize = p->sz;
103282 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
103284 *pSize = (sqlite_int64) p->endpoint.iOffset;
213579 static int rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
213582 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
213588 if( rc==SQLITE_OK && *pSize==0
213592 *pSize = 1024;