Lines Matching full:skip
168 * Special rules to skip reporting.
182 * 2. read watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
184 * 4. write watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
185 * 5. write watchpoint, conflicting read (value_change==MAYBE): skip; in skip_report()
276 /* Helper to skip KCSAN-related functions in stack-trace. */
281 int len, skip; in get_stack_skipnr() local
283 for (skip = 0; skip < num_entries; ++skip) { in get_stack_skipnr()
284 len = scnprintf(buf, sizeof(buf), "%ps", (void *)stack_entries[skip]); in get_stack_skipnr()
300 * No match for runtime functions -- @skip entries to skip to in get_stack_skipnr()
306 return skip; in get_stack_skipnr()
311 * that entry with @ip, returning the entries to skip with @replaced containing
320 int skip; in replace_stack_entry() local
327 for (skip = 0; skip < num_entries; ++skip) { in replace_stack_entry()
328 unsigned long func = stack_entries[skip]; in replace_stack_entry()
335 *replaced = stack_entries[skip]; in replace_stack_entry()
336 stack_entries[skip] = ip; in replace_stack_entry()
337 return skip; in replace_stack_entry()