Lines Matching defs:pSize

1157   int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
15718 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
26140 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){
26142 return id->pMethods->xFileSize(id, pSize);
37447 static int kvvfsFileSizeDb(sqlite3_file*, sqlite3_int64 *pSize);
37448 static int kvvfsFileSizeJrnl(sqlite3_file*, sqlite3_int64 *pSize);
38094 static int kvvfsFileSizeJrnl(sqlite3_file *pProtoFile, sqlite_int64 *pSize){
38097 *pSize = pFile->nJrnl;
38100 static int kvvfsFileSizeDb(sqlite3_file *pProtoFile, sqlite_int64 *pSize){
38104 *pSize = pFile->szDb;
38106 *pSize = kvvfsReadFileSize(pFile);
42229 static int unixFileSize(sqlite3_file *id, i64 *pSize){
42239 *pSize = buf.st_size;
42247 if( *pSize==1 ) *pSize = 0;
49734 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
49739 assert( pSize!=0 );
49741 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
49748 *pSize = info.EndOfFile.QuadPart;
49762 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
49771 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
49772 pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
52975 static int memdbFileSize(sqlite3_file*, sqlite3_int64 *pSize);
53222 static int memdbFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
53225 *pSize = p->sz;
106329 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
106331 *pSize = (sqlite_int64) p->endpoint.iOffset;
222910 static int rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
222913 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
222919 if( rc==SQLITE_OK && *pSize==0
222923 *pSize = 1024;