/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
D | test_start_stop.c | 109 unsigned int errorCount = 0; in main() local 111 errorCount += testInternalGet (0); in main() 112 errorCount += testMultithreadedGet (0); in main() 113 errorCount += testMultithreadedPoolGet (0); in main() 114 errorCount += testExternalGet (); in main() 117 errorCount += testInternalGet(MHD_USE_POLL); in main() 118 errorCount += testMultithreadedGet(MHD_USE_POLL); in main() 119 errorCount += testMultithreadedPoolGet(MHD_USE_POLL); in main() 123 errorCount += testInternalGet(MHD_USE_EPOLL_LINUX_ONLY); in main() 124 errorCount += testMultithreadedPoolGet(MHD_USE_EPOLL_LINUX_ONLY); in main() [all …]
|
D | perf_get_concurrent.c | 336 unsigned int errorCount = 0; in main() local 346 errorCount += testInternalGet (port++, 0); in main() 347 errorCount += testMultithreadedGet (port++, 0); in main() 348 errorCount += testMultithreadedPoolGet (port++, 0); in main() 349 errorCount += testExternalGet (port++); in main() 351 errorCount += testInternalGet (port++, MHD_USE_POLL); in main() 352 errorCount += testMultithreadedGet (port++, MHD_USE_POLL); in main() 353 errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL); in main() 356 errorCount += testInternalGet (port++, MHD_USE_EPOLL_LINUX_ONLY); in main() 357 errorCount += testMultithreadedPoolGet (port++, MHD_USE_EPOLL_LINUX_ONLY); in main() [all …]
|
D | test_get.c | 607 unsigned int errorCount = 0; in main() local 613 errorCount += testInternalGet (0); in main() 614 errorCount += testMultithreadedGet (0); in main() 615 errorCount += testMultithreadedPoolGet (0); in main() 616 errorCount += testUnknownPortGet (0); in main() 617 errorCount += testStopRace (0); in main() 618 errorCount += testExternalGet (); in main() 619 errorCount += testEmptyGet (0); in main() 622 errorCount += testInternalGet(MHD_USE_POLL); in main() 623 errorCount += testMultithreadedGet(MHD_USE_POLL); in main() [all …]
|
D | test_quiesce.c | 434 unsigned int errorCount = 0; in main() local 438 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, 0); in main() 439 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, 0); in main() 440 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, 0); in main() 441 errorCount += testExternalGet (); in main() 444 errorCount += testGet(MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_POLL); in main() 445 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, MHD_USE_POLL); in main() 446 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_POLL); in main() 450 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_EPOLL_LINUX_ONLY); in main() 451 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_EPOLL_LINUX_ONLY); in main() [all …]
|
D | test_get_response_cleanup.c | 291 unsigned int errorCount = 0; in main() local 295 errorCount += testInternalGet (); in main() 296 errorCount += testMultithreadedGet (); in main() 297 errorCount += testMultithreadedPoolGet (); in main() 298 errorCount += testExternalGet (); in main() 299 if (errorCount != 0) in main() 300 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 301 return errorCount != 0; /* 0 == pass */ in main()
|
D | perf_get.c | 502 unsigned int errorCount = 0; in main() local 512 errorCount += testExternalGet (port++); in main() 513 errorCount += testInternalGet (port++, 0); in main() 514 errorCount += testMultithreadedGet (port++, 0); in main() 515 errorCount += testMultithreadedPoolGet (port++, 0); in main() 518 errorCount += testInternalGet(port++, MHD_USE_POLL); in main() 519 errorCount += testMultithreadedGet(port++, MHD_USE_POLL); in main() 520 errorCount += testMultithreadedPoolGet(port++, MHD_USE_POLL); in main() 524 errorCount += testInternalGet(port++, MHD_USE_EPOLL_LINUX_ONLY); in main() 525 errorCount += testMultithreadedPoolGet(port++, MHD_USE_EPOLL_LINUX_ONLY); in main() [all …]
|
D | test_concurrent_stop.c | 211 unsigned int errorCount = 0; in main() local 221 errorCount += testMultithreadedGet (port++, 0); in main() 222 errorCount += testMultithreadedPoolGet (port++, 0); in main() 224 if (errorCount != 0) in main() 225 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 227 return errorCount != 0; /* 0 == pass */ in main()
|
D | test_urlparse.c | 180 unsigned int errorCount = 0; in main() local 186 errorCount += testInternalGet (0); in main() 187 if (errorCount != 0) in main() 188 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 190 return errorCount != 0; /* 0 == pass */ in main()
|
D | test_long_header.c | 241 unsigned int errorCount = 0; in main() local 247 errorCount += testLongUrlGet (); in main() 248 errorCount += testLongHeaderGet (); in main() 249 if (errorCount != 0) in main() 250 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 252 return errorCount != 0; /* 0 == pass */ in main()
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | test_daemon.c | 158 int errorCount = 0; in main() local 159 errorCount += testStartError (); in main() 160 errorCount += testStartStop (); in main() 161 errorCount += testExternalRun (); in main() 162 errorCount += testThread (); in main() 163 errorCount += testMultithread (); in main() 164 if (errorCount != 0) in main() 165 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 166 return errorCount != 0; /* 0 == pass */ in main()
|
D | test_postprocessor_large.c | 99 unsigned int errorCount = 0; in main() local 101 errorCount += test_simple_large (); in main() 102 if (errorCount != 0) in main() 103 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 104 return errorCount != 0; /* 0 == pass */ in main()
|
D | test_postprocessor.c | 338 unsigned int errorCount = 0; in main() local 340 errorCount += test_multipart_splits (); in main() 341 errorCount += test_multipart_garbage (); in main() 342 errorCount += test_urlencoding (); in main() 343 errorCount += test_multipart (); in main() 344 errorCount += test_nested_multipart (); in main() 345 errorCount += test_empty_value (); in main() 346 if (errorCount != 0) in main() 347 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 348 return errorCount != 0; /* 0 == pass */ in main()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
D | test_https_session_info.c | 169 unsigned int errorCount = 0; in main() local 177 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 180 errorCount += test_query_session (); in main() 181 print_test_result (errorCount, argv[0]); in main() 183 if (errorCount > 0) in main() 184 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 185 return errorCount; in main()
|
D | test_tls_authentication.c | 75 unsigned int errorCount = 0; in main() local 89 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 99 errorCount += in main() 102 print_test_result (errorCount, argv[0]); in main() 109 return errorCount != 0; in main()
|
D | test_https_get_parallel.c | 136 unsigned int errorCount = 0; in main() local 151 errorCount += in main() 159 errorCount += in main() 167 errorCount += in main() 175 errorCount += in main() 184 return errorCount != 0; in main()
|
D | test_https_get.c | 101 unsigned int errorCount = 0; in main() local 121 errorCount += in main() 123 errorCount += in main() 125 print_test_result (errorCount, argv[0]); in main() 129 return errorCount != 0; in main()
|
D | test_https_multi_daemon.c | 97 unsigned int errorCount = 0; in main() local 106 fprintf (stderr, "Error (code: %u). l:%d f:%s\n", errorCount, __LINE__, in main() 122 errorCount += in main() 125 print_test_result (errorCount, "concurent_daemon_pair"); in main() 133 return errorCount != 0; in main()
|
D | test_https_get_parallel_threads.c | 137 unsigned int errorCount = 0; in main() local 170 errorCount += in main() 178 errorCount += in main() 186 if (errorCount != 0) in main() 190 return errorCount != 0; in main()
|
D | test_https_get_select.c | 213 unsigned int errorCount = 0; in main() local 221 if (0 != (errorCount = testExternalGet (MHD_USE_EPOLL_LINUX_ONLY))) in main() 222 fprintf (stderr, "Fail: %d\n", errorCount); in main() 224 if (0 != (errorCount = testExternalGet (0))) in main() 225 fprintf (stderr, "Fail: %d\n", errorCount); in main() 227 return errorCount != 0; in main()
|
D | test_tls_options.c | 83 unsigned int errorCount = 0; in main() local 135 errorCount++; in main() 150 errorCount++; in main() 154 return errorCount != 0; in main()
|
D | test_https_time_out.c | 103 int errorCount = 0;; in main() local 137 errorCount += test_tls_session_time_out (session); in main() 140 print_test_result (errorCount, argv[0]); in main() 145 return errorCount != 0; in main()
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
D | analyze_continuously_test.dart | 39 int errorCount = 0; 41 server.onErrors.listen((FileAnalysisErrors errors) => errorCount += errors.errors.length); 46 expect(errorCount, 0); 59 int errorCount = 0; 62 errorCount += errors.errors.length; 68 expect(errorCount, greaterThan(0)); 78 int errorCount = 0; 81 errorCount += errors.errors.length; 85 expect(errorCount, 0);
|
/third_party/skia/third_party/externals/microhttpd/src/testzzuf/ |
D | test_long_header.c | 222 unsigned int errorCount = 0; in main() local 228 errorCount += testLongUrlGet (); in main() 229 errorCount += testLongHeaderGet (); in main() 230 if (errorCount != 0) in main() 231 fprintf (stderr, "Error (code: %u)\n", errorCount); in main() 233 return errorCount != 0; /* 0 == pass */ in main()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/shaders/ |
D | generate_shaders.bat | 11 set errorCount=0 variable 37 if %errorCount% GTR 0 ( 38 echo There were %errorCount% shader compilation errors. 63 set /a errorCount=%errorCount%+1
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/shaders/ |
D | generate_shaders.bat | 11 set errorCount=0 variable 37 if %errorCount% GTR 0 ( 38 echo There were %errorCount% shader compilation errors. 63 set /a errorCount=%errorCount%+1
|