Lines Matching refs:found
186 struct stack_record *found; in find_stack() local
188 for (found = bucket; found; found = found->next) { in find_stack()
189 if (found->hash == hash && in find_stack()
190 found->size == size && in find_stack()
191 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
192 return found; in find_stack()
222 struct stack_record *found = NULL, **bucket; in depot_save_stack() local
238 found = find_stack(smp_load_acquire(bucket), trace->entries, in depot_save_stack()
240 if (found) in depot_save_stack()
267 found = find_stack(*bucket, trace->entries, trace->nr_entries, hash); in depot_save_stack()
268 if (!found) { in depot_save_stack()
279 found = new; in depot_save_stack()
295 if (found) in depot_save_stack()
296 retval = found->handle.handle; in depot_save_stack()