Lines Matching refs:actual
47 struct dl_find_object actual; in check() local
48 int ret = _dl_find_object (address, &actual); in check()
67 if (actual.dlfo_flags != expected->dlfo_flags) in check()
72 actual.dlfo_flags, expected->dlfo_flags); in check()
78 if (actual.dlfo_flags != expected->dlfo_flags) in check()
83 address, actual.dlfo_map_start, expected->dlfo_map_start); in check()
85 if (actual.dlfo_map_end != expected->dlfo_map_end) in check()
90 address, actual.dlfo_map_end, expected->dlfo_map_end); in check()
93 if (actual.dlfo_link_map != expected->dlfo_link_map) in check()
98 address, actual.dlfo_link_map, expected->dlfo_link_map); in check()
100 if (actual.dlfo_eh_frame != expected->dlfo_eh_frame) in check()
105 address, actual.dlfo_eh_frame, expected->dlfo_eh_frame); in check()
108 if (actual.dlfo_eh_dbase != expected->dlfo_eh_dbase) in check()
113 address, actual.dlfo_eh_dbase, expected->dlfo_eh_dbase); in check()
117 if (actual.dlfo_eh_count != expected->dlfo_eh_count) in check()
122 address, actual.dlfo_eh_count, expected->dlfo_eh_count); in check()
238 struct dl_find_object actual; in do_test() local
239 TEST_COMPARE (find_object (&main_program_data, &actual), 0); in do_test()
240 check (&main_program_data, &actual, __LINE__); /* Reversed check. */ in do_test()