Lines Matching refs:iOfst
99 static int vlogRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
100 static int vlogWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst);
386 sqlite_int64 iOfst in vlogRead() argument
394 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vlogRead()
401 vlogLogPrint(p->pLog, tStart, tElapse, "READ", iAmt, iOfst, zSig, rc); in vlogRead()
405 && iOfst<=24 in vlogRead()
406 && iOfst+iAmt>=28 in vlogRead()
408 unsigned char *x = ((unsigned char*)zBuf)+(24-iOfst); in vlogRead()
413 if( iOfst+iAmt>=40 ){ in vlogRead()
430 sqlite_int64 iOfst in vlogWrite() argument
439 rc = p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst); in vlogWrite()
441 vlogLogPrint(p->pLog, tStart, tElapse, "WRITE", iAmt, iOfst, zSig, rc); in vlogWrite()
445 && iOfst<=24 in vlogWrite()
446 && iOfst+iAmt>=28 in vlogWrite()
448 unsigned char *x = ((unsigned char*)z)+(24-iOfst); in vlogWrite()
453 if( iOfst+iAmt>=40 ){ in vlogWrite()