Lines Matching refs:skip
169 * Special rules to skip reporting.
183 * 2. read watchpoint, conflicting write (value_change==MAYBE): skip;
185 * 4. write watchpoint, conflicting write (value_change==MAYBE): skip;
186 * 5. write watchpoint, conflicting read (value_change==MAYBE): skip;
277 /* Helper to skip KCSAN-related functions in stack-trace. */
282 int len, skip;
284 for (skip = 0; skip < num_entries; ++skip) {
285 len = scnprintf(buf, sizeof(buf), "%ps", (void *)stack_entries[skip]);
301 * No match for runtime functions -- @skip entries to skip to
307 return skip;
312 * that entry with @ip, returning the entries to skip with @replaced containing
321 int skip;
328 for (skip = 0; skip < num_entries; ++skip) {
329 unsigned long func = stack_entries[skip];
336 *replaced = stack_entries[skip];
337 stack_entries[skip] = ip;
338 return skip;