Lines Matching refs:nr_entries
233 unsigned int nr_entries; in stack_depot_snprint() local
235 nr_entries = stack_depot_fetch(handle, &entries); in stack_depot_snprint()
236 return nr_entries ? stack_trace_snprint(buf, size, entries, nr_entries, in stack_depot_snprint()
251 unsigned int nr_entries; in stack_depot_print() local
253 nr_entries = stack_depot_fetch(stack, &entries); in stack_depot_print()
254 if (nr_entries > 0) in stack_depot_print()
255 stack_trace_print(entries, nr_entries, 0); in stack_depot_print()
316 unsigned int nr_entries, in __stack_depot_save() argument
326 if (unlikely(nr_entries == 0) || stack_depot_disable) in __stack_depot_save()
329 hash = hash_stack(entries, nr_entries); in __stack_depot_save()
338 nr_entries, hash); in __stack_depot_save()
366 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save()
368 struct stack_record *new = depot_alloc_stack(entries, nr_entries, hash, &prealloc); in __stack_depot_save()
413 unsigned int nr_entries, in stack_depot_save() argument
416 return __stack_depot_save(entries, nr_entries, alloc_flags, true); in stack_depot_save()