Lines Matching refs:p
402 TestStruct *p = NULL; in test_visitor_in_struct() local
407 visit_type_TestStruct(v, NULL, &p, &error_abort); in test_visitor_in_struct()
408 g_assert_cmpint(p->integer, ==, -42); in test_visitor_in_struct()
409 g_assert(p->boolean == true); in test_visitor_in_struct()
410 g_assert_cmpstr(p->string, ==, "foo"); in test_visitor_in_struct()
412 g_free(p->string); in test_visitor_in_struct()
413 g_free(p); in test_visitor_in_struct()
923 TestStruct *p = NULL; in test_visitor_in_errors() local
933 visit_type_TestStruct(v, NULL, &p, &err); in test_visitor_in_errors()
935 g_assert(!p); in test_visitor_in_errors()
956 TestStruct *p = NULL; in test_visitor_in_wrong_type() local
965 visit_type_TestStruct(v, NULL, &p, &err); in test_visitor_in_wrong_type()
967 g_assert(!p); in test_visitor_in_wrong_type()
977 visit_type_TestStruct(v, NULL, &p, &err); in test_visitor_in_wrong_type()
979 g_assert(!p); in test_visitor_in_wrong_type()
1000 TestStruct *p = NULL; in test_visitor_in_fail_struct() local
1006 visit_type_TestStruct(v, NULL, &p, &err); in test_visitor_in_fail_struct()
1008 g_assert(!p); in test_visitor_in_fail_struct()