• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/morefile/

Lines Matching refs:searchStack

59 	/* Number of LevelRecs to add each time the searchStack is grown */
95 unsigned short stackDepth; /* Current depth on searchStack. */
131 LevelRecHandle searchStack,
217 LevelRecHandle searchStack,
225 SetHandleSize((Handle)searchStack, *searchStackSize + (kAdditionalLevelRecs * sizeof(LevelRec)));
227 *searchStackSize = GetHandleSize((Handle)searchStack);
761 static LevelRecHandle searchStack = NULL; /* static handle to LevelRec stack */
813 /* Create searchStack first time called */
814 if ( searchStack == NULL )
816 searchStack = (LevelRecHandle)NewHandle(kAdditionalLevelRecs * sizeof(LevelRec));
819 /* Make sure searchStack really exists */
820 if ( searchStack != NULL )
822 searchStackSize = GetHandleSize((Handle)searchStack);
833 /* clear searchStack */
858 dirID = (*searchStack)[catPosition->stackDepth].dirID;
859 index = (*searchStack)[catPosition->stackDepth].index;
863 if ( modDate != (*searchStack)[catPosition->stackDepth].dirModDate )
923 result = CheckStack(catPosition->stackDepth, searchStack, &searchStackSize);
926 /* Save the current state on the searchStack */
928 (*searchStack)[catPosition->stackDepth].dirID = dirID;
929 (*searchStack)[catPosition->stackDepth].index = index;
930 (*searchStack)[catPosition->stackDepth].dirModDate = GetDirModDate(realVRefNum, dirID);
953 dirID = (*searchStack)[catPosition->stackDepth].dirID;
954 index = (*searchStack)[catPosition->stackDepth].index;
958 if ( modDate != (*searchStack)[catPosition->stackDepth].dirModDate )
1001 result = CheckStack(catPosition->stackDepth, searchStack, &searchStackSize);
1007 (*searchStack)[catPosition->stackDepth].dirID = dirID;
1008 (*searchStack)[catPosition->stackDepth].index = index;
1009 (*searchStack)[catPosition->stackDepth].dirModDate = GetDirModDate(realVRefNum, dirID);
1020 /* searchStack Handle could not be allocated */