Lines Matching defs:otherForksCount

231 									ItemCount				otherForksCount);
241 ItemCount otherForksCount);
870 ItemCount otherForksCount,
877 otherForksCount = 0;
885 osErr = CalculateForksToCopy(source, &dataFork, &rsrcFork, &otherForks, &otherForksCount);
896 osErr = OpenAllForks(dest, &dataFork, &rsrcFork, otherForks, otherForksCount);
904 for (thisForkIndex = 0; thisForkIndex < otherForksCount && osErr == noErr; thisForkIndex++)
913 OSErr osErr2 = CloseAllForks(dataFork.forkDestRefNum, rsrcFork.forkDestRefNum, otherForks, otherForksCount);
941 ItemCount otherForksCount)
952 if (osErr == noErr && otherForks != NULL && otherForksCount > 0) // Open the other forks.
954 for (thisForkIndex = 0; thisForkIndex < otherForksCount && osErr == noErr; thisForkIndex++)
1121 OSErr CloseAllForks(SInt16 dataRefNum, SInt16 rsrcRefNum, ForkTrackerPtr otherForks, ItemCount otherForksCount)
1141 if( otherForks != NULL && otherForksCount > 0 )
1143 for (thisForkIndex = 0; thisForkIndex < otherForksCount; thisForkIndex++)
1181 ItemCount otherForksCount;
1191 otherForksCount = 0;
1224 else if (otherForksCount == otherForksMemoryBlockCount)
1228 newOtherForks = (ForkTracker*)NewPtr(sizeof(ForkTracker) * (otherForksCount + kExpectedForkCount));
1231 BlockMoveData(otherForks, newOtherForks, sizeof(ForkTracker) * otherForksCount);
1246 BlockMoveData(&thisForkName, &otherForks[otherForksCount].forkName, sizeof(thisForkName));
1247 otherForks[otherForksCount].forkSize = thisForkSize;
1248 otherForks[otherForksCount].forkDestRefNum = 0;
1249 ++otherForksCount;
1264 otherForksCount = 0;
1268 *otherForksCountParam = otherForksCount;