Home | History | Annotate | Download | only in dist

Lines Matching refs:sStat

28922     struct stat sStat;                 /* fstat() info for database file */
28928 if( osFstat(pDbFd->h, &sStat) && pInode->bProcessLock==0 ){
28948 (u32)sStat.st_ino, (u32)sStat.st_dev);
28968 pShmNode->h = robust_open(zShmFilename, openFlags, (sStat.st_mode&0777));
28981 if( osFchown(pShmNode->h, sStat.st_uid, sStat.st_gid)==0 ){
29079 struct stat sStat; /* Used by fstat() */
29088 if( osFstat(pShmNode->h, &sStat) ){
29093 if( sStat.st_size<nByte ){
29102 if( osFallocate(pShmNode->h, sStat.st_size, nByte)!=0 ){
29925 struct stat sStat; /* Results of stat() call */
29935 if( 0==osStat(zPath, &sStat) ){
29940 while( pInode && (pInode->fileId.dev!=sStat.st_dev
29941 || pInode->fileId.ino!=sStat.st_ino) ){
29993 struct stat sStat; /* Output of stat() on database file */
30021 if( 0==osStat(zDb, &sStat) ){
30022 *pMode = sStat.st_mode & 0777;
30023 *pUid = sStat.st_uid;
30024 *pGid = sStat.st_gid;