Lines Matching refs:Testvfs
37 typedef struct Testvfs Testvfs; typedef
81 struct Testvfs { struct
157 #define PARENTVFS(x) (((Testvfs *)((x)->pAppData))->pParent)
226 static int tvfsResultCode(Testvfs *p, int *pRc){ in tvfsResultCode()
269 static int tvfsInjectIoerr(Testvfs *p){ in tvfsInjectIoerr()
273 static int tvfsInjectFullerr(Testvfs *p){ in tvfsInjectFullerr()
276 static int tvfsInjectCantopenerr(Testvfs *p){ in tvfsInjectCantopenerr()
282 Testvfs *p, in tvfsExecTcl()
320 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsClose()
352 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsRead()
379 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsWrite()
409 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsTruncate()
430 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsSync()
481 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsLock()
496 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsUnlock()
514 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsCheckReservedLock()
527 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsFileControl()
581 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsSectorSize()
593 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData; in tvfsDeviceCharacteristics()
614 Testvfs *p = (Testvfs *)pVfs->pAppData; in tvfsOpen()
685 if( pVfs->iVersion>1 && ((Testvfs *)pVfs->pAppData)->isNoshm ){ in tvfsOpen()
704 Testvfs *p = (Testvfs *)pVfs->pAppData; in tvfsDelete()
728 Testvfs *p = (Testvfs *)pVfs->pAppData; in tvfsAccess()
761 Testvfs *p = (Testvfs *)pVfs->pAppData; in tvfsFullPathname()
828 Testvfs *p; in tvfsShmOpen()
834 p = (Testvfs *)pFd->pVfs->pAppData; in tvfsShmOpen()
895 Testvfs *p = (Testvfs *)(pFd->pVfs->pAppData); in tvfsShmMap()
944 Testvfs *p = (Testvfs *)(pFd->pVfs->pAppData); in tvfsShmLock()
1006 Testvfs *p = (Testvfs *)(pFd->pVfs->pAppData); in tvfsShmBarrier()
1026 Testvfs *p = (Testvfs *)(pFd->pVfs->pAppData); in tvfsShmUnmap()
1086 Testvfs *p = (Testvfs *)cd; in testvfs_obj_cmd()
1394 Testvfs *p = (Testvfs *)cd; in testvfs_obj_del()
1399 memset(p, 0, sizeof(Testvfs)); in testvfs_obj_del()
1476 Testvfs *p; /* New object */ in testvfs_cmd()
1537 nByte = sizeof(Testvfs) + (int)strlen(zVfs)+1; in testvfs_cmd()
1538 p = (Testvfs *)ckalloc(nByte); in testvfs_cmd()