Lines Matching defs:pSize

1299   int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
8670 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
8674 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
9788 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
15179 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){
15181 return id->pMethods->xFileSize(id, pSize);
26708 static int unixFileSize(sqlite3_file *id, i64 *pSize){
26718 *pSize = buf.st_size;
26726 if( *pSize==1 ) *pSize = 0;
33159 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
33164 assert( pSize!=0 );
33166 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize));
33173 *pSize = info.EndOfFile.QuadPart;
33187 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
33196 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
33197 pFile->h, pSize, *pSize, sqlite3ErrName(rc)));
53326 ** Set *pSize to the size of the buffer needed to hold the value of
53328 ** to a valid entry, *pSize is set to 0.
53337 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){
53341 *pSize = 0;
53344 *pSize = pCur->info.nKey;
53350 ** Set *pSize to the number of bytes of data in the entry the
53361 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){
53365 *pSize = pCur->info.nData;
73378 static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
73382 rc = sqlite3OsFileSize(p->pReal, pSize);
73384 *pSize = (sqlite_int64) p->iSize;
73677 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
73679 *pSize = (sqlite_int64) p->endpoint.iOffset;