HomeSort by relevance Sort by last modified time
    Searched refs:errorCount (Results 1 - 25 of 397) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libmicrohttpd/src/testcurl/
test_start_stop.c 109 unsigned int errorCount = 0;
111 errorCount += testInternalGet (0);
112 errorCount += testMultithreadedGet (0);
113 errorCount += testMultithreadedPoolGet (0);
114 errorCount += testExternalGet ();
117 errorCount += testInternalGet(MHD_USE_POLL);
118 errorCount += testMultithreadedGet(MHD_USE_POLL);
119 errorCount += testMultithreadedPoolGet(MHD_USE_POLL);
123 errorCount += testInternalGet(MHD_USE_EPOLL_LINUX_ONLY);
124 errorCount += testMultithreadedPoolGet(MHD_USE_EPOLL_LINUX_ONLY)
    [all...]
perf_get_concurrent.c 336 unsigned int errorCount = 0;
346 errorCount += testInternalGet (port++, 0);
347 errorCount += testMultithreadedGet (port++, 0);
348 errorCount += testMultithreadedPoolGet (port++, 0);
349 errorCount += testExternalGet (port++);
351 errorCount += testInternalGet (port++, MHD_USE_POLL);
352 errorCount += testMultithreadedGet (port++, MHD_USE_POLL);
353 errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL);
356 errorCount += testInternalGet (port++, MHD_USE_EPOLL_LINUX_ONLY);
357 errorCount += testMultithreadedPoolGet (port++, MHD_USE_EPOLL_LINUX_ONLY)
    [all...]
test_options.c 119 unsigned int errorCount = 0;
121 errorCount += test_wrap ("ip addr option", &test_ip_addr_option);
123 return errorCount != 0;
test_concurrent_stop.c 211 unsigned int errorCount = 0;
221 errorCount += testMultithreadedGet (port++, 0);
222 errorCount += testMultithreadedPoolGet (port++, 0);
224 if (errorCount != 0)
225 fprintf (stderr, "Error (code: %u)\n", errorCount);
227 return errorCount != 0; /* 0 == pass */
test_get.c 607 unsigned int errorCount = 0;
613 errorCount += testInternalGet (0);
614 errorCount += testMultithreadedGet (0);
615 errorCount += testMultithreadedPoolGet (0);
616 errorCount += testUnknownPortGet (0);
617 errorCount += testStopRace (0);
618 errorCount += testExternalGet ();
619 errorCount += testEmptyGet (0);
622 errorCount += testInternalGet(MHD_USE_POLL);
623 errorCount += testMultithreadedGet(MHD_USE_POLL)
    [all...]
test_get_response_cleanup.c 291 unsigned int errorCount = 0;
295 errorCount += testInternalGet ();
296 errorCount += testMultithreadedGet ();
297 errorCount += testMultithreadedPoolGet ();
298 errorCount += testExternalGet ();
299 if (errorCount != 0)
300 fprintf (stderr, "Error (code: %u)\n", errorCount);
301 return errorCount != 0; /* 0 == pass */
test_digestauth.c 232 unsigned int errorCount = 0;
242 errorCount += testDigestAuth ();
243 if (errorCount != 0)
244 fprintf (stderr, "Error (code: %u)\n", errorCount);
246 return errorCount != 0; /* 0 == pass */
test_digestauth_with_arguments.c 230 unsigned int errorCount = 0;
240 errorCount += testDigestAuth ();
241 if (errorCount != 0)
242 fprintf (stderr, "Error (code: %u)\n", errorCount);
244 return errorCount != 0; /* 0 == pass */
test_urlparse.c 180 unsigned int errorCount = 0;
186 errorCount += testInternalGet (0);
187 if (errorCount != 0)
188 fprintf (stderr, "Error (code: %u)\n", errorCount);
190 return errorCount != 0; /* 0 == pass */
perf_get.c 502 unsigned int errorCount = 0;
512 errorCount += testExternalGet (port++);
513 errorCount += testInternalGet (port++, 0);
514 errorCount += testMultithreadedGet (port++, 0);
515 errorCount += testMultithreadedPoolGet (port++, 0);
518 errorCount += testInternalGet(port++, MHD_USE_POLL);
519 errorCount += testMultithreadedGet(port++, MHD_USE_POLL);
520 errorCount += testMultithreadedPoolGet(port++, MHD_USE_POLL);
524 errorCount += testInternalGet(port++, MHD_USE_EPOLL_LINUX_ONLY);
525 errorCount += testMultithreadedPoolGet(port++, MHD_USE_EPOLL_LINUX_ONLY)
    [all...]
  /external/libmicrohttpd/src/microhttpd/
test_daemon.c 158 int errorCount = 0;
159 errorCount += testStartError ();
160 errorCount += testStartStop ();
161 errorCount += testExternalRun ();
162 errorCount += testThread ();
163 errorCount += testMultithread ();
164 if (errorCount != 0)
165 fprintf (stderr, "Error (code: %u)\n", errorCount);
166 return errorCount != 0; /* 0 == pass */
test_postprocessor_large.c 99 unsigned int errorCount = 0;
101 errorCount += test_simple_large ();
102 if (errorCount != 0)
103 fprintf (stderr, "Error (code: %u)\n", errorCount);
104 return errorCount != 0; /* 0 == pass */
test_postprocessor.c 338 unsigned int errorCount = 0;
340 errorCount += test_multipart_splits ();
341 errorCount += test_multipart_garbage ();
342 errorCount += test_urlencoding ();
343 errorCount += test_multipart ();
344 errorCount += test_nested_multipart ();
345 errorCount += test_empty_value ();
346 if (errorCount != 0)
347 fprintf (stderr, "Error (code: %u)\n", errorCount);
348 return errorCount != 0; /* 0 == pass *
    [all...]
  /external/skia/src/sksl/
SkSLErrorReporter.h 28 virtual int errorCount() = 0;
  /external/libmicrohttpd/src/testcurl/https/
test_https_get.c 101 unsigned int errorCount = 0;
121 errorCount +=
123 errorCount +=
125 print_test_result (errorCount, argv[0]);
129 return errorCount != 0;
test_tls_authentication.c 75 unsigned int errorCount = 0;
89 fprintf (stderr, "Error (code: %u)\n", errorCount);
99 errorCount +=
102 print_test_result (errorCount, argv[0]);
109 return errorCount != 0;
test_tls_options.c 83 unsigned int errorCount = 0;
135 errorCount++;
150 errorCount++;
154 return errorCount != 0;
test_https_session_info.c 169 unsigned int errorCount = 0;
177 fprintf (stderr, "Error (code: %u)\n", errorCount);
180 errorCount += test_query_session ();
181 print_test_result (errorCount, argv[0]);
183 if (errorCount > 0)
184 fprintf (stderr, "Error (code: %u)\n", errorCount);
185 return errorCount;
test_https_get_parallel_threads.c 137 unsigned int errorCount = 0;
170 errorCount +=
178 errorCount +=
186 if (errorCount != 0)
190 return errorCount != 0;
test_https_multi_daemon.c 97 unsigned int errorCount = 0;
106 fprintf (stderr, "Error (code: %u). l:%d f:%s\n", errorCount, __LINE__,
122 errorCount +=
125 print_test_result (errorCount, "concurent_daemon_pair");
133 return errorCount != 0;
test_https_get_parallel.c 136 unsigned int errorCount = 0;
151 errorCount +=
159 errorCount +=
167 errorCount +=
175 errorCount +=
184 return errorCount != 0;
test_https_time_out.c 103 int errorCount = 0;;
137 errorCount += test_tls_session_time_out (session);
140 print_test_result (errorCount, argv[0]);
145 return errorCount != 0;
test_https_get_select.c 213 unsigned int errorCount = 0;
221 if (0 != (errorCount = testExternalGet (MHD_USE_EPOLL_LINUX_ONLY)))
222 fprintf (stderr, "Fail: %d\n", errorCount);
224 if (0 != (errorCount = testExternalGet (0)))
225 fprintf (stderr, "Fail: %d\n", errorCount);
227 return errorCount != 0;
  /external/libmicrohttpd/src/testzzuf/
test_long_header.c 222 unsigned int errorCount = 0;
228 errorCount += testLongUrlGet ();
229 errorCount += testLongHeaderGet ();
230 if (errorCount != 0)
231 fprintf (stderr, "Error (code: %u)\n", errorCount);
233 return errorCount != 0; /* 0 == pass */
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TextReporter.java 68 private int errorCount = 0;
92 return errorCount;
118 errorCount++;
127 errorCount++;
166 errorCount++;
207 if(errorCount != 0) {
218 summary.println("--- FAILED: " + errorCount + " error(s) occured ---");
233 return errorCount != 0;

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 91011>>