Lines Matching defs:pFile

99   sqlite3_file *pFile;
257 static int tmpClose(sqlite3_file *pFile){
258 tmp_file *pTmp = (tmp_file *)pFile;
267 sqlite3_file *pFile,
272 tmp_file *pTmp = (tmp_file *)pFile;
284 sqlite3_file *pFile,
289 tmp_file *pTmp = (tmp_file *)pFile;
307 static int tmpTruncate(sqlite3_file *pFile, sqlite_int64 size){
308 tmp_file *pTmp = (tmp_file *)pFile;
316 static int tmpSync(sqlite3_file *pFile, int flags){
323 static int tmpFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
324 tmp_file *pTmp = (tmp_file *)pFile;
332 static int tmpLock(sqlite3_file *pFile, int eLock){
339 static int tmpUnlock(sqlite3_file *pFile, int eLock){
346 static int tmpCheckReservedLock(sqlite3_file *pFile, int *pResOut){
354 static int tmpFileControl(sqlite3_file *pFile, int op, void *pArg){
361 static int tmpSectorSize(sqlite3_file *pFile){
368 static int tmpDeviceCharacteristics(sqlite3_file *pFile){
375 static int fsClose(sqlite3_file *pFile){
377 fs_file *p = (fs_file *)pFile;
390 rc = pReal->pFile->pMethods->xClose(pReal->pFile);
401 sqlite3_file *pFile,
407 fs_file *p = (fs_file *)pFile;
409 sqlite3_file *pF = pReal->pFile;
440 sqlite3_file *pFile,
446 fs_file *p = (fs_file *)pFile;
448 sqlite3_file *pF = pReal->pFile;
488 static int fsTruncate(sqlite3_file *pFile, sqlite_int64 size){
489 fs_file *p = (fs_file *)pFile;
502 static int fsSync(sqlite3_file *pFile, int flags){
503 fs_file *p = (fs_file *)pFile;
505 sqlite3_file *pRealFile = pReal->pFile;
526 static int fsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
527 fs_file *p = (fs_file *)pFile;
540 static int fsLock(sqlite3_file *pFile, int eLock){
547 static int fsUnlock(sqlite3_file *pFile, int eLock){
554 static int fsCheckReservedLock(sqlite3_file *pFile, int *pResOut){
562 static int fsFileControl(sqlite3_file *pFile, int op, void *pArg){
569 static int fsSectorSize(sqlite3_file *pFile){
576 static int fsDeviceCharacteristics(sqlite3_file *pFile){
586 sqlite3_file *pFile,
591 fs_file *p = (fs_file *)pFile;
598 tmp_file *p = (tmp_file *)pFile;
627 pReal->pFile = (sqlite3_file *)(&pReal[1]);
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
633 pRealFile = pReal->pFile;
671 if( pReal->pFile->pMethods ){
672 pReal->pFile->pMethods->xClose(pReal->pFile);
698 pF = pReal->pFile;