| /freebsd-12-stable/contrib/googletest/googletest/test/ |
| D | googletest-env-var-test_.cc | 39 using ::std::cout; 51 cout << GTEST_FLAG(break_on_failure); in PrintFlag() 56 cout << GTEST_FLAG(catch_exceptions); in PrintFlag() 61 cout << GTEST_FLAG(color); in PrintFlag() 66 cout << GTEST_FLAG(death_test_style); in PrintFlag() 71 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag() 76 cout << GTEST_FLAG(filter); in PrintFlag() 81 cout << GTEST_FLAG(output); in PrintFlag() 86 cout << GTEST_FLAG(print_time); in PrintFlag() 91 cout << GTEST_FLAG(repeat); in PrintFlag() [all …]
|
| /freebsd-12-stable/contrib/atf/atf-c++/ |
| D | build_test.cpp | 48 std::cout << prefix << ":"; in print_col() 51 std::cout << " '" << *iter << "'"; in print_col() 52 std::cout << "\n"; in print_col() 59 std::cout << prefix << ":"; in print_array() 61 std::cout << " '" << *a << "'"; in print_array() 62 std::cout << "\n"; in print_array() 69 std::cout << "Setting " << var << " to '" << val << "'\n"; in verbose_set_env() 157 std::cout << "> Test: " << test->msg << "\n"; in ATF_TEST_CASE_BODY() 179 std::cout << "> Test: " << test->msg << "\n"; in ATF_TEST_CASE_BODY() 200 std::cout << "> Test: " << test->msg << "\n"; in ATF_TEST_CASE_BODY()
|
| D | utils_test.cpp | 73 std::cout.flush(); in ATF_TEST_CASE_BODY() 85 std::cout.flush(); in ATF_TEST_CASE_BODY() 97 std::cout.flush(); in ATF_TEST_CASE_BODY() 110 std::cout.flush(); in ATF_TEST_CASE_BODY() 223 std::cout << "Should not get into child\n"; in ATF_TEST_CASE_BODY() 227 std::cout << "Child stdout\n"; in ATF_TEST_CASE_BODY() 299 std::cout << "Buffer this"; in ATF_TEST_CASE_BODY() 301 std::cout << "The printed message"; in ATF_TEST_CASE_BODY() 302 std::cout.flush(); in ATF_TEST_CASE_BODY() 334 std::cout << "Some output\n"; in fork_and_wait() [all …]
|
| D | tests_test.cpp | 55 std::cout << ">>" << *iter << "<<\n"; in print_indented() 68 std::cout << "String equality check failed.\n" in check_equal() 70 std::cout << "GOT:\n"; in check_equal() 72 std::cout << "EXPECTED:\n"; in check_equal()
|
| D | macros_test.cpp | 350 std::cout << "Checking with a " << t->cond << " value\n"; in ATF_TEST_CASE_BODY() 398 std::cout << "Checking with " << t->v1 << ", " << t->v2 in ATF_TEST_CASE_BODY() 490 std::cout << "Checking with " << t->regexp << ", " << t->string in ATF_TEST_CASE_BODY() 582 std::cout << "Checking with " << t->what << " and expecting " in ATF_TEST_CASE_BODY() 593 std::cout << "Checking that message contains '" << t->msg in ATF_TEST_CASE_BODY() 634 std::cout << "Checking with " << t->what << " and expecting " in ATF_TEST_CASE_BODY() 645 std::cout << "Checking that message contains '" << t->msg in ATF_TEST_CASE_BODY()
|
| /freebsd-12-stable/contrib/googletest/googlemock/src/ |
| D | gmock-internal-utils.cc | 162 std::cout << "\nGMOCK WARNING:"; in Log() 166 std::cout << "\n"; in Log() 168 std::cout << message; in Log() 181 std::cout << "\n"; in Log() 183 std::cout << "Stack trace:\n" in Log() 187 std::cout << ::std::flush; in Log()
|
| D | gmock-spec-builders.cc | 611 std::cout << "\n"; in ~MockObjectRegistry() 613 std::cout << internal::FormatFileLocation(state.first_used_file, in ~MockObjectRegistry() 615 std::cout << " ERROR: this mock object"; in ~MockObjectRegistry() 617 std::cout << " (used in test " << state.first_used_test_case << "." in ~MockObjectRegistry() 620 std::cout << " should be deleted but never is. Its address is @" in ~MockObjectRegistry() 625 std::cout << "\nERROR: " << leaked_count << " leaked mock " in ~MockObjectRegistry() 634 std::cout.flush(); in ~MockObjectRegistry()
|
| /freebsd-12-stable/tools/tools/mctest/ |
| D | mctest.cc | 66 …cout << "mctest [-r] -M clients -m client number -i interface -g multicast group -s packet size -n… in usage() 197 cout << "Packet run complete\n"; in sink() 199 cout << "Missed " << number - n << " packets." << endl; in sink() 202 cout << "sec: " << packets[i].tv_sec << " usec: " << in sink() 214 cout << "maximum gap (usecs): " << maxgap << endl; in sink() 215 cout << "minimum gap (usecs): " << mingap << endl; in sink() 278 cout << "Packet Reflection Complete" << endl; in server() 281 cout << "Missed " << args->number - n << " packets." << endl; in server() 410 cout << "Results from client #" << client << endl; in source() 411 cout << "in usecs" << endl; in source() [all …]
|
| /freebsd-12-stable/contrib/libstdc++/src/ |
| D | ios_init.cc | 71 extern ostream cout; 95 new (&cout) ostream(&buf_cout_sync); in Init() 99 cin.tie(&cout); in Init() 103 cerr.tie(&cout); in Init() 135 cout.flush(); in ~Init() 185 cout.rdbuf(&buf_cout); in sync_with_stdio()
|
| /freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/ |
| D | main.c | 187 if (cout != NULL) { in lostpeer() 188 shutdown(fileno(cout), SHUT_RDWR); in lostpeer() 189 fclose(cout); in lostpeer() 190 cout = NULL; in lostpeer() 201 if (cout != NULL) { in lostpeer() 202 shutdown(fileno(cout), SHUT_RDWR); in lostpeer() 203 fclose(cout); in lostpeer() 204 cout = NULL; in lostpeer()
|
| D | ftp.c | 51 FILE *cin, *cout; variable 127 cout = fdopen (s, "w"); in hookup() 128 if (cin == NULL || cout == NULL) { in hookup() 132 if (cout) in hookup() 133 fclose (cout); in hookup() 142 if (cout) in hookup() 143 fclose (cout); in hookup() 290 if (cout == NULL) { in command() 307 sec_vfprintf(cout, fmt, ap); in command() 313 fprintf (cout, "\r\n"); in command() [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/asn1/ |
| D | tasn_enc.c | 28 static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, 507 static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, in asn1_ex_i2c() argument 520 return pf->prim_i2c(pval, cout, putype, it); in asn1_ex_i2c() 578 cout ? &cout : NULL); in asn1_ex_i2c() 585 return i2c_ASN1_INTEGER((ASN1_INTEGER *)*pval, cout ? &cout : NULL); in asn1_ex_i2c() 609 if (cout) { in asn1_ex_i2c() 610 strtmp->data = cout; in asn1_ex_i2c() 622 if (cout && len) in asn1_ex_i2c() 623 memcpy(cout, cont, len); in asn1_ex_i2c()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/ |
| D | debug_fn_imps.hpp | 54 std::cout << "av1" << std::endl; in assert_valid() 59 std::cout << "av2" << std::endl; in assert_valid() 61 std::cout << "av3" << std::endl; in assert_valid()
|
| /freebsd-12-stable/contrib/tnftp/src/ |
| D | ftp.c | 257 cout = fdopen(s, "w"); in hookup() 258 if (cin == NULL || cout == NULL) { in hookup() 262 if (cout) in hookup() 263 (void)fclose(cout); in hookup() 272 if (cout) in hookup() 273 (void)fclose(cout); in hookup() 340 if (cout == NULL) { in command() 351 vfprintf(cout, fmt, ap); in command() 353 fputs("\r\n", cout); in command() 354 (void)fflush(cout); in command() [all …]
|
| D | util.c | 298 if (cout) in cleanuppeer() 299 (void)fclose(cout); in cleanuppeer() 300 cout = NULL; in cleanuppeer() 346 if (cout != NULL) { in lostpeer() 347 (void)shutdown(fileno(cout), 1+1); in lostpeer() 348 (void)fclose(cout); in lostpeer() 349 cout = NULL; in lostpeer() 360 if (cout != NULL) { in lostpeer() 361 (void)shutdown(fileno(cout), 1+1); in lostpeer() 362 (void)fclose(cout); in lostpeer() [all …]
|
| /freebsd-12-stable/contrib/libucl/examples/ |
| D | ucl_cpp.cc | 15 std::cout << obj.dump(UCL_EMIT_CONFIG) << std::endl; in main() 18 std::cout << o.dump(UCL_EMIT_CONFIG) << std::endl; in main()
|
| /freebsd-12-stable/usr.bin/users/ |
| D | users.cc | 71 copy(names.begin(), last, ostream_iterator<string>(cout, " ")); in main() 72 cout << *last << endl; in main()
|
| /freebsd-12-stable/usr.sbin/pmc/ |
| D | cmd_pmc_summary.cc | 155 std::cout << "idx: " << kv.first << " name: " << name << " rate: " << rate << std::endl; in pmc_summary_handler() 159 std::cout << val.second << ": " << val.first << std::endl; in pmc_summary_handler() 167 std::cout << name << ":" << std::endl; in pmc_summary_handler() 171 std::cout << "\t" << largest.second << ": " << largest.first*rate << std::endl; in pmc_summary_handler()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
| D | trace_fn_imps.hpp | 73 std::cout << r_e << " " <<* r_e << std::endl; in trace_entry() 81 std::cout << r_e << std::endl; in trace_entry()
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/src/ |
| D | iostream.cpp | 38 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cout[sizeof(ostream)] 115 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, &mb_cout)); in DoIOSInit() 138 ostream* cout_ptr = reinterpret_cast<ostream*>(cout); in ~DoIOSInit()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/splay_tree_/ |
| D | node.hpp | 77 { std::cout << PB_DS_V2F(m_value) << "(" << m_metadata << ")"; } in trace() 119 { std::cout << PB_DS_V2F(m_value); } in trace()
|
| /freebsd-12-stable/contrib/ntp/util/ |
| D | sht.c | 85 cout <<"CreateFileMapping with psec!=0 failed"<<endl; in getShmTime() 93 cout <<"CreateFileMapping "<<buf<<":"<<mbuf<<endl; in getShmTime() 103 cout <<"MapViewOfFile "<<buf<<":"<<mbuf<<endl; in getShmTime()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/rb_tree_map_/ |
| D | node.hpp | 97 std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> ") in trace() 132 { std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> "); } in trace()
|
| /freebsd-12-stable/contrib/opencsd/decoder/source/ |
| D | ocsd_msg_logger.cpp | 88 std::cout << msg; in LogMsg() 89 std::cout.flush(); in LogMsg()
|
| /freebsd-12-stable/contrib/atf/test-programs/ |
| D | cpp_helpers.cpp | 264 std::cout << "msg\n"; in ATF_TEST_CASE_BODY() 271 std::cout << "msg\n"; in ATF_TEST_CASE_BODY() 279 std::cout << "msg\n"; in ATF_TEST_CASE_BODY()
|