Lines Matching refs:int32_t

47 extern	int32_t		BytesPerCluster;
48 extern int32_t TotalClusters;
49 extern int32_t LastCluster;
50 extern int32_t RootDirSize;
51 extern int32_t FATSize;
63 static int32_t ReservedClusterCount;
64 static int32_t AllocedClusterCount;
65 static int32_t FreeClusterCount;
66 static int32_t BadClusterCount;
71 static int32_t CachedClusterCount;
73 int32_t HiddenClusterCount;
74 int32_t FileClusterCount;
75 int32_t DirClusterCount;
76 int32_t HiddenFileCount;
77 int32_t FileCount;
78 int32_t DirCount;
80 static int32_t orphanSizeLookup(int32_t clusterNum);
83 freeNameInfo(int32_t clusterNum) in freeNameInfo()
100 printOrphanPath(int32_t clusterNum) in printOrphanPath()
120 printOrphanSize(int32_t clusterNum) in printOrphanSize()
122 int32_t size = orphanSizeLookup(clusterNum); in printOrphanSize()
135 printOrphanInfo(int32_t clusterNum) in printOrphanInfo()
142 askAboutFreeing(int32_t clusterNum) in askAboutFreeing()
162 askAboutRelink(int32_t clusterNum) in askAboutRelink()
180 isHidden(int32_t clusterNum) in isHidden()
193 isInUse(int32_t clusterNum) in isInUse()
211 findClusterCacheEntry(int32_t clusterNum) in findClusterCacheEntry()
224 findClusterDataInTheCache(int32_t clusterNum) in findClusterDataInTheCache()
237 addToCache(int32_t clusterNum, uchar_t *buf, int32_t *datasize) in addToCache()
287 seekCluster(int fd, int32_t clusterNum) in seekCluster()
315 getCluster(int fd, int32_t clusterNum, uchar_t **data, int32_t *datasize) in getCluster()
430 cloneClusterInfo(int32_t clusterNum) in cloneClusterInfo()
447 updateFlags(int32_t clusterNum, int newflags) in updateFlags()
490 allocInUse(int32_t clusterNum, ClusterInfo **template) in allocInUse()
512 markFree(int32_t clusterNum) in markFree()
527 markOrphan(int fd, int32_t clusterNum, struct pcdir *dp) in markOrphan()
540 markBad(int32_t clusterNum, uchar_t *recovered, int32_t recoveredLen) in markBad()
562 clearOrphan(int32_t c) in clearOrphan()
573 clearInUse(int32_t c) in clearInUse()
591 int32_t cc; in clearAllClusters_InUse()
614 int32_t c; in countClusters()
650 int32_t c; in summarizeFAT()
677 int32_t ignore32; in summarize()
722 isMarkedBad(int32_t clusterNum) in isMarkedBad()
735 isMarkedOrphan(int32_t clusterNum) in isMarkedOrphan()
748 orphanChain(int fd, int32_t c, struct pcdir *ndp) in orphanChain()
766 static int32_t
767 findAFreeCluster(int32_t startAt) in findAFreeCluster()
769 int32_t look = startAt; in findAFreeCluster()
795 emergencyEndOfDirectory(int fd, int32_t secondToLast) in emergencyEndOfDirectory()
798 int32_t dirdatasize = 0; in emergencyEndOfDirectory()
818 makeNewEndOfDirectory(struct pcdir *entry, int32_t secondToLast, in makeNewEndOfDirectory()
819 int32_t newCluster, ClusterContents *newData) in makeNewEndOfDirectory()
843 createNewEndOfDirectory(int fd, struct pcdir *entry, int32_t secondToLast) in createNewEndOfDirectory()
846 int32_t dirdatasize = 0; in createNewEndOfDirectory()
847 int32_t freeCluster; in createNewEndOfDirectory()
894 truncAtCluster(int fd, struct pcdir *entry, int32_t cluster) in truncAtCluster()
897 int32_t prev, count, follow; in truncAtCluster()
963 updateOrphanedChainMetadata(int fd, struct pcdir *dp, int32_t endCluster, in updateOrphanedChainMetadata()
1035 splitChain(int fd, struct pcdir *dp, int32_t problemCluster, in splitChain()
1036 struct pcdir **newdp, int32_t *orphanStart) in splitChain()
1062 freeOrphan(int32_t c) in freeOrphan()
1064 int32_t n; in freeOrphan()
1088 redoInUse(int fd, int32_t c, struct pcdir *ndp, int32_t stopAtCluster) in redoInUse()
1098 orphanDirEntLookup(int32_t clusterNum) in orphanDirEntLookup()
1110 static int32_t
1111 orphanSizeLookup(int32_t clusterNum) in orphanSizeLookup()
1132 linkOrphan(int fd, int32_t start) in linkOrphan()
1163 int32_t c; in relinkCreatedOrphans()
1192 int32_t cc, c, n; in relinkFATOrphans()
1193 int32_t bpc, newSize; in relinkFATOrphans()
1228 checkForFATLoop(int32_t clusterNum) in checkForFATLoop()
1230 int32_t prev = clusterNum; in checkForFATLoop()
1231 int32_t follow; in checkForFATLoop()
1254 sharedChainError(int fd, int32_t clusterNum, struct pcdir *badEntry) in sharedChainError()
1279 truncChainWithBadCluster(int fd, struct pcdir *dp, int32_t startCluster) in truncChainWithBadCluster()
1282 int32_t orphanStartCluster; in truncChainWithBadCluster()
1283 int32_t c = startCluster; in truncChainWithBadCluster()
1313 int32_t
1314 nextInChain(int32_t currentCluster) in nextInChain()
1316 int32_t nextCluster; in nextInChain()
1341 int32_t
1380 squirrelPath(struct nameinfo *pathInfo, int32_t clusterNum) in squirrelPath()
1391 markInUse(int fd, int32_t clusterNum, struct pcdir *referencer, struct in markInUse()
1392 pcdir *longRef, int32_t longStartCluster, int isHiddenFile, in markInUse()
1436 markClusterModified(int32_t clusterNum) in markClusterModified()
1469 readCluster(int fd, int32_t clusterNum, uchar_t **data, int32_t *datasize, in readCluster()
1507 int32_t clusterCount; in findBadClusters()
1508 int32_t datasize; in findBadClusters()