Lines Matching defs:success
25 int success;
47 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
48 ck_assert_msg(success, "unexpected parse failure %sfor '%s'", test_string[test_type], name);
56 success = xcb_parse_display(argument, &got_host, &got_display, 0);
57 ck_assert_msg(success, "unexpected screenless parse failure %sfor '%s'", test_string[test_type], name);
66 int success;
89 success = xcb_parse_display(argument, &got_host, &got_display, &got_screen);
90 ck_assert_msg(!success, "unexpected parse success %sfor '%s'", test_string[test_type], name);
98 success = xcb_parse_display(argument, &got_host, &got_display, 0);
99 ck_assert_msg(!success, "unexpected screenless parse success %sfor '%s'", test_string[test_type], name);