• 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/classic/morefile/

Lines Matching refs:stackDepth

95 	unsigned short	stackDepth;		/* Current depth on searchStack. */
130 static OSErr CheckStack(unsigned short stackDepth,
216 static OSErr CheckStack(unsigned short stackDepth,
222 if ( (*searchStackSize / sizeof(LevelRec)) == (stackDepth + 1) )
834 catPosition->stackDepth = 0;
851 /* For resume, catPosition->stackDepth > 0 */
852 if ( catPosition->stackDepth > 0 )
854 /* Position catPosition->stackDepth to access last saved level */
855 --(catPosition->stackDepth);
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);
928 (*searchStack)[catPosition->stackDepth].dirID = dirID;
929 (*searchStack)[catPosition->stackDepth].index = index;
930 (*searchStack)[catPosition->stackDepth].dirModDate = GetDirModDate(realVRefNum, dirID);
932 /* position catPosition->stackDepth for next saved level */
933 ++(catPosition->stackDepth);
948 if ( catPosition->stackDepth > 0 )
950 /* position catPosition->stackDepth to access last saved level */
951 --(catPosition->stackDepth);
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);
1011 /* position catPosition->stackDepth for next saved level */
1013 ++(catPosition->stackDepth);