Lines Matching refs:pFile
291 static int vfstraceClose(sqlite3_file *pFile){ in vfstraceClose() argument
292 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceClose()
309 sqlite3_file *pFile, in vfstraceRead() argument
314 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceRead()
328 sqlite3_file *pFile, in vfstraceWrite() argument
333 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceWrite()
346 static int vfstraceTruncate(sqlite3_file *pFile, sqlite_int64 size){ in vfstraceTruncate() argument
347 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceTruncate()
360 static int vfstraceSync(sqlite3_file *pFile, int flags){ in vfstraceSync() argument
361 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceSync()
384 static int vfstraceFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ in vfstraceFileSize() argument
385 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceFileSize()
412 static int vfstraceLock(sqlite3_file *pFile, int eLock){ in vfstraceLock() argument
413 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceLock()
426 static int vfstraceUnlock(sqlite3_file *pFile, int eLock){ in vfstraceUnlock() argument
427 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceUnlock()
440 static int vfstraceCheckReservedLock(sqlite3_file *pFile, int *pResOut){ in vfstraceCheckReservedLock() argument
441 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceCheckReservedLock()
455 static int vfstraceFileControl(sqlite3_file *pFile, int op, void *pArg){ in vfstraceFileControl() argument
456 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceFileControl()
516 static int vfstraceSectorSize(sqlite3_file *pFile){ in vfstraceSectorSize() argument
517 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceSectorSize()
529 static int vfstraceDeviceCharacteristics(sqlite3_file *pFile){ in vfstraceDeviceCharacteristics() argument
530 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceDeviceCharacteristics()
543 static int vfstraceShmLock(sqlite3_file *pFile, int ofst, int n, int flags){ in vfstraceShmLock() argument
544 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceShmLock()
564 sqlite3_file *pFile, in vfstraceShmMap() argument
570 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceShmMap()
579 static void vfstraceShmBarrier(sqlite3_file *pFile){ in vfstraceShmBarrier() argument
580 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceShmBarrier()
585 static int vfstraceShmUnmap(sqlite3_file *pFile, int delFlag){ in vfstraceShmUnmap() argument
586 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceShmUnmap()
604 sqlite3_file *pFile, in vfstraceOpen() argument
609 vfstrace_file *p = (vfstrace_file *)pFile; in vfstraceOpen()
641 pFile->pMethods = pNew; in vfstraceOpen()