Home | History | Annotate | Download | only in sqlite

Lines Matching full:zpath

137      return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath);
148 + OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath,
164 + rc = osOpenDirectory(pFile->zPath, &dirfd);
200 pNew->zPath = zFilename;
294 zPath = zName;
306 - rc = openDirectory(zPath, &dirfd);
343 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
344 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock,
352 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
353 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock,
361 - if( unlink(zPath)==(-1) && errno!=ENOENT ){
362 + if( osUnlink(zPath)==(-1) && errno!=ENOENT ){
363 return unixLogError(SQLITE_IOERR_DELETE, "unlink", zPath);
368 - rc = openDirectory(zPath, &fd);
369 + rc = osOpenDirectory(zPath, &fd);
533 return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath);
544 + OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath,
560 + rc = osOpenDirectory(pFile->zPath, &dirfd);
598 pNew->zPath = zFilename;
692 zPath = zName;
704 - rc = openDirectory(zPath, &dirfd);
741 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
742 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock,
750 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
751 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock,
759 - if( unlink(zPath)==(-1) && errno!=ENOENT ){
760 + if( osUnlink(zPath)==(-1) && errno!=ENOENT ){
761 return unixLogError(SQLITE_IOERR_DELETE, "unlink", zPath);
766 - rc = openDirectory(zPath, &fd);
767 + rc = osOpenDirectory(zPath, &fd);
772 rc = unixLogError(SQLITE_IOERR_DIR_FSYNC, "fsync", zPath);
847 -- if( 0==stat(zPath, &sStat) ){
848 -+ if( 0==osStat(zPath, &sStat) ){
855 - while( nDb>0 && zPath[nDb]!='-' ) nDb--;
857 - memcpy(zDb, zPath, nDb);
870 - *pResOut = (osAccess(zPath, amode)==0);
873 -- if( 0==stat(zPath, &buf) && buf.st_size==0 ){
874 -+ if( 0==osStat(zPath, &buf) && buf.st_size==0 ){