Lines Matching refs:exp_addr

336                                    InetSocketAddress *exp_addr, bool success)  in inet_parse_test_helper()  argument
352 if (exp_addr != NULL) { in inet_parse_test_helper()
353 g_assert_cmpstr(addr.host, ==, exp_addr->host); in inet_parse_test_helper()
354 g_assert_cmpstr(addr.port, ==, exp_addr->port); in inet_parse_test_helper()
356 g_assert_cmpint(addr.has_numeric, ==, exp_addr->has_numeric); in inet_parse_test_helper()
357 g_assert_cmpint(addr.numeric, ==, exp_addr->numeric); in inet_parse_test_helper()
358 g_assert_cmpint(addr.has_to, ==, exp_addr->has_to); in inet_parse_test_helper()
359 g_assert_cmpint(addr.to, ==, exp_addr->to); in inet_parse_test_helper()
360 g_assert_cmpint(addr.has_ipv4, ==, exp_addr->has_ipv4); in inet_parse_test_helper()
361 g_assert_cmpint(addr.ipv4, ==, exp_addr->ipv4); in inet_parse_test_helper()
362 g_assert_cmpint(addr.has_ipv6, ==, exp_addr->has_ipv6); in inet_parse_test_helper()
363 g_assert_cmpint(addr.ipv6, ==, exp_addr->ipv6); in inet_parse_test_helper()
364 g_assert_cmpint(addr.has_keep_alive, ==, exp_addr->has_keep_alive); in inet_parse_test_helper()
365 g_assert_cmpint(addr.keep_alive, ==, exp_addr->keep_alive); in inet_parse_test_helper()
368 exp_addr->has_keep_alive_count); in inet_parse_test_helper()
370 exp_addr->keep_alive_count); in inet_parse_test_helper()
374 exp_addr->has_keep_alive_idle); in inet_parse_test_helper()
376 exp_addr->keep_alive_idle); in inet_parse_test_helper()
380 exp_addr->has_keep_alive_interval); in inet_parse_test_helper()
382 exp_addr->keep_alive_interval); in inet_parse_test_helper()
385 g_assert_cmpint(addr.has_mptcp, ==, exp_addr->has_mptcp); in inet_parse_test_helper()
386 g_assert_cmpint(addr.mptcp, ==, exp_addr->mptcp); in inet_parse_test_helper()
398 InetSocketAddress exp_addr = { in test_inet_parse_nohost_good() local
402 inet_parse_test_helper(":5000", &exp_addr, true); in test_inet_parse_nohost_good()
419 InetSocketAddress exp_addr = { in test_inet_parse_ipv4_good() local
423 inet_parse_test_helper("127.0.0.1:5000", &exp_addr, true); in test_inet_parse_ipv4_good()
435 InetSocketAddress exp_addr = { in test_inet_parse_ipv6_good() local
439 inet_parse_test_helper("[::1]:5000", &exp_addr, true); in test_inet_parse_ipv6_good()
461 InetSocketAddress exp_addr = { in test_inet_parse_hostname_good() local
465 inet_parse_test_helper("localhost:5000", &exp_addr, true); in test_inet_parse_hostname_good()
472 InetSocketAddress exp_addr = { in test_inet_parse_all_options_good() local
516 , &exp_addr, true); in test_inet_parse_all_options_good()
523 InetSocketAddress exp_addr = { in test_inet_parse_all_implicit_bool_good() local
546 , &exp_addr, true); in test_inet_parse_all_implicit_bool_good()