Lines Matching refs:statbuf
697 struct stat statbuf; in robust_open() local
698 if( osFstat(fd, &statbuf)==0 in robust_open()
699 && statbuf.st_size==0 in robust_open()
700 && (statbuf.st_mode&0777)!=m in robust_open()
1368 struct stat statbuf; /* Low-level file information */ in findInodeInfo() local
1377 rc = osFstat(fd, &statbuf); in findInodeInfo()
1397 if( statbuf.st_size==0 && (pFile->fsFlags & SQLITE_FSFLAGS_IS_MSDOS)!=0 ){ in findInodeInfo()
1403 rc = osFstat(fd, &statbuf); in findInodeInfo()
1412 fileId.dev = statbuf.st_dev; in findInodeInfo()
1416 fileId.ino = (u64)statbuf.st_ino; in findInodeInfo()
5243 struct stat statbuf; /* Low-level file information */ in unixMapfile() local
5244 if( osFstat(pFd->h, &statbuf) ){ in unixMapfile()
5247 nMap = statbuf.st_size; in unixMapfile()