Searched defs:clusterNum (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dfat.c188 * 12 bit FATS computed below, 1.5 * clusterNum, is a
279 reservedInFAT(int32_t clusterNum) argument
283 e = readFATEntry(clusterNum);
291 badInFAT(int32_t clusterNum) argument
293 return (readFATEntry(clusterNum) == PCF_BADCLUSTER32);
301 freeInFAT(int32_t clusterNum) argument
303 return (readFATEntry(clusterNum) == PCF_FREECLUSTER);
310 lastInFAT(int32_t clusterNum) argument
312 return (readFATEntry(clusterNum) == PCF_LASTCLUSTER32);
319 markLastInFAT(int32_t clusterNum) argument
325 markFreeInFAT(int32_t clusterNum) argument
331 markBadInFAT(int32_t clusterNum) argument
[all...]
H A Dfsck_pcfs.h80 int32_t clusterNum; member in struct:cached
186 extern void markClusterModified(int32_t clusterNum);
200 extern void markFreeInFAT(int32_t clusterNum);
201 extern void markLastInFAT(int32_t clusterNum);
203 extern void markBadInFAT(int32_t clusterNum);
205 extern void squirrelPath(struct nameinfo *pathInfo, int32_t clusterNum);
218 extern int reservedInFAT(int32_t clusterNum);
219 extern int isMarkedBad(int32_t clusterNum);
220 extern int readCluster(int fd, int32_t clusterNum, uchar_t **data,
222 extern int freeInFAT(int32_t clusterNum);
[all...]
H A Dclusters.c81 static int32_t orphanSizeLookup(int32_t clusterNum);
84 freeNameInfo(int32_t clusterNum) argument
87 if (clusterNum < FIRST_CLUSTER || clusterNum > LastCluster)
89 if (InUse[clusterNum - FIRST_CLUSTER]->path != NULL) {
90 if (InUse[clusterNum - FIRST_CLUSTER]->path->references > 1) {
91 InUse[clusterNum - FIRST_CLUSTER]->path->references--;
93 free(InUse[clusterNum - FIRST_CLUSTER]->path->fullName);
94 free(InUse[clusterNum - FIRST_CLUSTER]->path);
96 InUse[clusterNum
101 printOrphanPath(int32_t clusterNum) argument
121 printOrphanSize(int32_t clusterNum) argument
136 printOrphanInfo(int32_t clusterNum) argument
143 askAboutFreeing(int32_t clusterNum) argument
163 askAboutRelink(int32_t clusterNum) argument
181 isHidden(int32_t clusterNum) argument
194 isInUse(int32_t clusterNum) argument
212 findClusterCacheEntry(int32_t clusterNum) argument
225 findClusterDataInTheCache(int32_t clusterNum) argument
238 addToCache(int32_t clusterNum, uchar_t *buf, int32_t *datasize) argument
288 seekCluster(int fd, int32_t clusterNum) argument
316 getCluster(int fd, int32_t clusterNum, uchar_t **data, int32_t *datasize) argument
431 cloneClusterInfo(int32_t clusterNum) argument
448 updateFlags(int32_t clusterNum, int newflags) argument
491 allocInUse(int32_t clusterNum, ClusterInfo **template) argument
513 markFree(int32_t clusterNum) argument
528 markOrphan(int fd, int32_t clusterNum, struct pcdir *dp) argument
541 markBad(int32_t clusterNum, uchar_t *recovered, int32_t recoveredLen) argument
723 isMarkedBad(int32_t clusterNum) argument
736 isMarkedOrphan(int32_t clusterNum) argument
1099 orphanDirEntLookup(int32_t clusterNum) argument
1112 orphanSizeLookup(int32_t clusterNum) argument
1229 checkForFATLoop(int32_t clusterNum) argument
1255 sharedChainError(int fd, int32_t clusterNum, struct pcdir *badEntry) argument
1381 squirrelPath(struct nameinfo *pathInfo, int32_t clusterNum) argument
1392 markInUse(int fd, int32_t clusterNum, struct pcdir *referencer, struct pcdir *longRef, int32_t longStartCluster, int isHiddenFile, ClusterInfo **template) argument
1437 markClusterModified(int32_t clusterNum) argument
1470 readCluster(int fd, int32_t clusterNum, uchar_t **data, int32_t *datasize, int shouldCache) argument
[all...]

Completed in 61 milliseconds