Lines Matching refs:zFile
720 char *zFile; in sqlite3_vfslog_new() local
740 zFile = (char *)&p->base.zName[nVfs+1]; in sqlite3_vfslog_new()
741 pParent->xFullPathname(pParent, zLog, pParent->mxPathname, zFile); in sqlite3_vfslog_new()
744 pParent->xDelete(pParent, zFile, 0); in sqlite3_vfslog_new()
745 rc = pParent->xOpen(pParent, zFile, p->pLog, flags, &flags); in sqlite3_vfslog_new()
814 char *zFile; /* File name for pFd */ member
875 char *zFile; in vlogConnect() local
885 p->zFile = &((char *)p->pFd)[pVfs->szOsFile]; in vlogConnect()
887 zFile = sqlite3_mprintf("%s", argv[3]); in vlogConnect()
888 if( !zFile ){ in vlogConnect()
892 dequote(zFile); in vlogConnect()
893 pVfs->xFullPathname(pVfs, zFile, pVfs->mxPathname, p->zFile); in vlogConnect()
894 sqlite3_free(zFile); in vlogConnect()
897 rc = pVfs->xOpen(pVfs, p->zFile, p->pFd, flags, &flags); in vlogConnect()