Home | History | Annotate | Download | only in massif

Lines Matching defs:redo

866    Bool redo;
870 // circumstances, we may need to redo it all, asking for more IPs.
872 // - If the original stack trace is smaller than asked-for, redo=False
873 // - Else if after filtering we have >= clo_depth IPs, redo=False
874 // - Else redo=True
875 // In other words, to redo, we'd have to get a stack trace as big as we
879 redo = True; // Assume this to begin with.
880 for (overestimate = 3; redo; overestimate += 6) {
893 // If the original stack trace is smaller than asked-for, redo=False.
894 if (n_ips < clo_depth + overestimate) { redo = False; }
916 // If after filtering we have >= clo_depth IPs, redo=False
918 redo = False;
922 if (redo) {