Lines Matching refs:pair

111 		struct symbol *pair, *first_pair;  in test__vmlinux_matches_kallsyms()  local
124 pair = first_pair; in test__vmlinux_matches_kallsyms()
126 if (pair && UM(pair->start) == mem_start) { in test__vmlinux_matches_kallsyms()
128 if (strcmp(sym->name, pair->name) == 0) { in test__vmlinux_matches_kallsyms()
138 s64 skew = mem_end - UM(pair->end); in test__vmlinux_matches_kallsyms()
142 UM(pair->end)); in test__vmlinux_matches_kallsyms()
155 nnd = backwards ? rb_prev(&pair->rb_node) : in test__vmlinux_matches_kallsyms()
156 rb_next(&pair->rb_node); in test__vmlinux_matches_kallsyms()
161 pair = next; in test__vmlinux_matches_kallsyms()
168 pair = first_pair; in test__vmlinux_matches_kallsyms()
173 mem_start, sym->name, pair->name); in test__vmlinux_matches_kallsyms()
188 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; in test__vmlinux_matches_kallsyms() local
195 pair = map_groups__find_by_name(&kallsyms.kmaps, type, in test__vmlinux_matches_kallsyms()
199 if (pair) in test__vmlinux_matches_kallsyms()
200 pair->priv = 1; in test__vmlinux_matches_kallsyms()
208 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; in test__vmlinux_matches_kallsyms() local
213 pair = map_groups__find(&kallsyms.kmaps, type, mem_start); in test__vmlinux_matches_kallsyms()
214 if (pair == NULL || pair->priv) in test__vmlinux_matches_kallsyms()
217 if (pair->start == mem_start) { in test__vmlinux_matches_kallsyms()
218 pair->priv = 1; in test__vmlinux_matches_kallsyms()
221 if (mem_end != pair->end) in test__vmlinux_matches_kallsyms()
223 pair->start, pair->end, pair->pgoff); in test__vmlinux_matches_kallsyms()
224 pr_info(" %s\n", pair->dso->name); in test__vmlinux_matches_kallsyms()
225 pair->priv = 1; in test__vmlinux_matches_kallsyms()