Lines Matching refs:entry
52 struct anon_mapping * entry;
55 entry = list_entry(pos, struct anon_mapping, lru_list);
56 if (trans->anon == entry)
58 if (trans->last_anon == entry)
60 sfile_clear_anon(entry);
61 list_del(&entry->list);
62 list_del(&entry->lru_list);
64 free(entry);
84 struct anon_mapping * entry;
89 entry = list_entry(pos, struct anon_mapping, list);
90 if (entry->tgid == tgid && entry->app_cookie == app) {
91 if (trans->last_anon == entry)
93 sfile_clear_anon(entry);
94 list_del(&entry->list);
95 list_del(&entry->lru_list);
97 free(entry);
183 struct anon_mapping * entry;
191 entry = list_entry(pos, struct anon_mapping, list);
192 if (anon_match(trans, entry))
210 list_del(&entry->list);
211 list_add(&entry->list, &hashes[hash]);
214 entry->start, entry->end, (unsigned int)entry->tgid,
216 return entry;