Home | History | Annotate | Download | only in daemon

Lines Matching refs:anon

10  * What is relatively common is expanding anon maps, which leaves us
36 * anon cache, we'll tear down all the mappings for that tgid. Thus, LRU
56 if (trans->anon == entry)
103 printf("Cleared anon maps for tgid %u (%s).\n", tgid, name);
124 printf("Added anon map 0x%llx-0x%llx for tgid %u (%s).\n",
146 /* Some anon maps have labels like
148 * Keep track of these labels. If a map has no name, call it "anon".
151 strcpy(name, "anon");
165 anon_match(struct transient const * trans, struct anon_mapping const * anon)
167 if (!anon)
169 if (trans->tgid != anon->tgid)
171 if (trans->app_cookie != anon->app_cookie)
173 if (trans->pc < anon->start)
175 return (trans->pc < anon->end);
186 if (anon_match(trans, trans->anon))
187 return (trans->anon);