Home | History | Annotate | Download | only in src

Lines Matching refs:maxframes

55 static int maxframes = 256;
182 if (frames->frames == maxframes)
335 for (int i = 1; i < nscopes && (maxframes == 0 || *nr < maxframes); i++)
366 for (int nr = 0; nr < frames->frames && (maxframes == 0
367 || frame_nr < maxframes); nr++)
420 if (frames->frames > 0 && frame_nr == maxframes)
422 "(%d, use -n 0 for unlimited)", (long long) tid, maxframes);
545 maxframes = atoi (arg);
546 if (maxframes < 0)
548 argp_error (state, N_("-n MAXFRAMES should be 0 or higher."));
669 { NULL, 'n', "MAXFRAMES", 0,
670 N_("Show at most MAXFRAMES per thread (default 256, use 0 for unlimited)"), 0 },
701 /* When maxframes is zero, then 2048 is just the initial allocation
703 frames.allocated = maxframes == 0 ? 2048 : maxframes;