Lines Matching defs:got_display
27 int got_display, got_screen;
45 got_display = got_screen = -42;
47 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
50 ck_assert_msg(display == got_display, "parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display);
54 got_display = got_screen = -42;
56 success = xcb_parse_display(argument, &got_host, &got_display, 0);
59 ck_assert_msg(display == got_display, "screenless parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display);
68 int got_display, got_screen;
87 got_display = got_screen = -42;
89 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
92 ck_assert_msg(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display);
96 got_display = got_screen = -42;
98 success = xcb_parse_display(argument, &got_host, &got_display, 0);
101 ck_assert_msg(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display);