Lines Matching refs:nr_entries
329 unsigned int nr_entries; in stack_depot_snprint() local
331 nr_entries = stack_depot_fetch(handle, &entries); in stack_depot_snprint()
332 return nr_entries ? stack_trace_snprint(buf, size, entries, nr_entries, in stack_depot_snprint()
347 unsigned int nr_entries; in stack_depot_print() local
349 nr_entries = stack_depot_fetch(stack, &entries); in stack_depot_print()
350 if (nr_entries > 0) in stack_depot_print()
351 stack_trace_print(entries, nr_entries, 0); in stack_depot_print()
420 unsigned int nr_entries, in __stack_depot_save() argument
439 nr_entries = filter_irq_stacks(entries, nr_entries); in __stack_depot_save()
441 if (unlikely(nr_entries == 0) || stack_depot_disable) in __stack_depot_save()
444 hash = hash_stack(entries, nr_entries); in __stack_depot_save()
453 nr_entries, hash); in __stack_depot_save()
481 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save()
483 struct stack_record *new = depot_alloc_stack(entries, nr_entries, hash, &prealloc); in __stack_depot_save()
530 unsigned int nr_entries, in stack_depot_save() argument
533 return __stack_depot_save(entries, nr_entries, 0, alloc_flags, true); in stack_depot_save()