Lines Matching defs:ec
47 #define TEST_NOT_FAILED(ec) BOOST_TEST( !ec.failed() ); BOOST_TEST( ec? false: true ); BOOST_TEST( … argument
48 #define TEST_FAILED(ec) BOOST_TEST( ec.failed() ); BOOST_TEST( ec ); BOOST_TEST( !!ec ); argument
53 Ec ec; in test() local
70 Ec ec; in test() local
87 Ec ec( 0, generic_category() ); in test() local
98 Ec ec( 1, generic_category() ); in test() local
106 Ec ec( 0, system_category() ); in test() local
117 Ec ec( 1, system_category() ); in test() local
125 Ec ec( 0, http_category() ); in test() local
153 error_condition ec( errc::success ); in main() local
161 error_condition ec( errc::address_family_not_supported ); in main() local
169 error_code ec( make_error_code( errc::success ) ); in main() local
177 error_code ec( make_error_code( errc::address_family_not_supported ) ); in main() local