Lines Matching refs:found
171 struct stack_record *found; in find_stack() local
173 for (found = bucket; found; found = found->next) { in find_stack()
174 if (found->hash == hash && in find_stack()
175 found->size == size && in find_stack()
176 !memcmp(entries, found->entries, in find_stack()
178 return found; in find_stack()
209 struct stack_record *found = NULL, **bucket; in depot_save_stack() local
225 found = find_stack(smp_load_acquire(bucket), trace->entries, in depot_save_stack()
227 if (found) in depot_save_stack()
254 found = find_stack(*bucket, trace->entries, trace->nr_entries, hash); in depot_save_stack()
255 if (!found) { in depot_save_stack()
266 found = new; in depot_save_stack()
282 if (found) in depot_save_stack()
283 retval = found->handle.handle; in depot_save_stack()