Lines Matching defs:pFile

192 static int vfstraceClose(sqlite3_file *pFile){
193 vfstrace_file *p = (vfstrace_file *)pFile;
210 sqlite3_file *pFile,
215 vfstrace_file *p = (vfstrace_file *)pFile;
229 sqlite3_file *pFile,
234 vfstrace_file *p = (vfstrace_file *)pFile;
247 static int vfstraceTruncate(sqlite3_file *pFile, sqlite_int64 size){
248 vfstrace_file *p = (vfstrace_file *)pFile;
261 static int vfstraceSync(sqlite3_file *pFile, int flags){
262 vfstrace_file *p = (vfstrace_file *)pFile;
285 static int vfstraceFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
286 vfstrace_file *p = (vfstrace_file *)pFile;
313 static int vfstraceLock(sqlite3_file *pFile, int eLock){
314 vfstrace_file *p = (vfstrace_file *)pFile;
327 static int vfstraceUnlock(sqlite3_file *pFile, int eLock){
328 vfstrace_file *p = (vfstrace_file *)pFile;
341 static int vfstraceCheckReservedLock(sqlite3_file *pFile, int *pResOut){
342 vfstrace_file *p = (vfstrace_file *)pFile;
356 static int vfstraceFileControl(sqlite3_file *pFile, int op, void *pArg){
357 vfstrace_file *p = (vfstrace_file *)pFile;
397 static int vfstraceSectorSize(sqlite3_file *pFile){
398 vfstrace_file *p = (vfstrace_file *)pFile;
410 static int vfstraceDeviceCharacteristics(sqlite3_file *pFile){
411 vfstrace_file *p = (vfstrace_file *)pFile;
424 static int vfstraceShmLock(sqlite3_file *pFile, int ofst, int n, int flags){
425 vfstrace_file *p = (vfstrace_file *)pFile;
445 sqlite3_file *pFile,
451 vfstrace_file *p = (vfstrace_file *)pFile;
460 static void vfstraceShmBarrier(sqlite3_file *pFile){
461 vfstrace_file *p = (vfstrace_file *)pFile;
466 static int vfstraceShmUnmap(sqlite3_file *pFile, int delFlag){
467 vfstrace_file *p = (vfstrace_file *)pFile;
485 sqlite3_file *pFile,
490 vfstrace_file *p = (vfstrace_file *)pFile;
522 pFile->pMethods = pNew;