HomeSort by relevance Sort by last modified time
    Searched defs:errorCount (Results 26 - 50 of 418) sorted by null

12 3 4 5 6 7 8 91011>>

  /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 */
test_get.c 301 unsigned int errorCount = 0;
307 errorCount += testInternalGet ();
308 errorCount += testMultithreadedGet ();
309 errorCount += testExternalGet ();
310 if (errorCount != 0)
311 fprintf (stderr, "Error (code: %u)\n", errorCount);
313 return errorCount != 0; /* 0 == pass */
test_get_chunked.c 319 unsigned int errorCount = 0;
323 errorCount += testInternalGet ();
324 errorCount += testMultithreadedGet ();
325 errorCount += testExternalGet ();
326 if (errorCount != 0)
327 fprintf (stderr, "Error (code: %u)\n", errorCount);
329 return errorCount != 0; /* 0 == pass */
test_post.c 381 unsigned int errorCount = 0;
387 errorCount += testInternalPost ();
388 errorCount += testMultithreadedPost ();
389 errorCount += testExternalPost ();
390 if (errorCount != 0)
391 fprintf (stderr, "Error (code: %u)\n", errorCount);
393 return errorCount != 0; /* 0 == pass */
test_post_form.c 397 unsigned int errorCount = 0;
403 errorCount += testInternalPost ();
404 errorCount += testMultithreadedPost ();
405 errorCount += testExternalPost ();
406 if (errorCount != 0)
407 fprintf (stderr, "Error (code: %u)\n", errorCount);
409 return errorCount != 0; /* 0 == pass */
test_put.c 348 unsigned int errorCount = 0;
354 errorCount += testInternalPut ();
355 errorCount += testMultithreadedPut ();
356 errorCount += testExternalPut ();
357 if (errorCount != 0)
358 fprintf (stderr, "Error (code: %u)\n", errorCount);
360 return errorCount != 0; /* 0 == pass */
test_put_chunked.c 360 unsigned int errorCount = 0;
364 errorCount += testInternalPut ();
365 errorCount += testMultithreadedPut ();
366 errorCount += testExternalPut ();
367 if (errorCount != 0)
368 fprintf (stderr, "Error (code: %u)\n", errorCount);
370 return errorCount != 0; /* 0 == pass */
  /prebuilts/go/darwin-x86/src/go/types/
gotype.go 112 errorCount = 0
169 errorCount += len(list)
172 errorCount++
273 if !*allErrors && errorCount >= 10 {
325 if errorCount > 0 {
  /prebuilts/go/linux-x86/src/go/types/
gotype.go 112 errorCount = 0
169 errorCount += len(list)
172 errorCount++
273 if !*allErrors && errorCount >= 10 {
325 if errorCount > 0 {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestResult.java 75 public int errorCount() {
76 return mWrappedTestResult.errorCount();
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 106 ANTLR3_UINT32 errorCount;
  /external/icu/icu4c/source/test/intltest/
intltest.h 339 int32_t errorCount;
  /external/junit/src/main/java/junit/framework/
TestResult.java 89 public synchronized int errorCount() {
183 return failureCount() == 0 && errorCount() == 0;
  /external/junit/src/main/java/junit/textui/
ResultPrinter.java 44 printDefects(result.errors(), result.errorCount(), "error");
89 ", Errors: " + result.errorCount());
  /external/libmicrohttpd/src/microhttpd/
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/libmicrohttpd/src/testcurl/
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_get_chunked.c 402 unsigned int errorCount = 0;
406 errorCount += testInternalGet ();
407 errorCount += testMultithreadedGet ();
408 errorCount += testMultithreadedPoolGet ();
409 errorCount += testExternalGet ();
410 if (errorCount != 0)
411 fprintf (stderr, "Error (code: %u)\n", errorCount);
413 return errorCount != 0; /* 0 == pass */
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_large_put.c 461 unsigned int errorCount = 0;
470 errorCount += testInternalPut ();
471 errorCount += testMultithreadedPut ();
472 errorCount += testMultithreadedPoolPut ();
473 errorCount += testExternalPut ();
475 if (errorCount != 0)
476 fprintf (stderr, "Error (code: %u)\n", errorCount);
478 return errorCount != 0; /* 0 == pass */
test_post_loop.c 481 unsigned int errorCount = 0;
488 errorCount += testInternalPost ();
498 errorCount += testMultithreadedPost ();
508 errorCount += testMultithreadedPoolPost ();
518 errorCount += testExternalPost ();
527 if (errorCount != 0)
528 fprintf (stderr, "Error (code: %u)\n", errorCount);
530 return errorCount != 0; /* 0 == pass */
test_postform.c 478 unsigned int errorCount = 0;
490 errorCount += testInternalPost ();
491 errorCount += testMultithreadedPost ();
492 errorCount += testMultithreadedPoolPost ();
493 errorCount += testExternalPost ();
494 if (errorCount != 0)
495 fprintf (stderr, "Error (code: %u)\n", errorCount);
497 return errorCount != 0; /* 0 == pass */
test_process_headers.c 423 unsigned int errorCount = 0;
427 errorCount += testMultithreadedGet ();
428 errorCount += testMultithreadedPoolGet ();
429 errorCount += testExternalGet ();
430 if (errorCount != 0)
431 fprintf (stderr, "Error (code: %u)\n", errorCount);
433 return errorCount != 0; /* 0 == pass */
test_put.c 426 unsigned int errorCount = 0;
432 errorCount += testInternalPut ();
433 errorCount += testMultithreadedPut ();
434 errorCount += testMultithreadedPoolPut ();
435 errorCount += testExternalPut ();
436 if (errorCount != 0)
437 fprintf (stderr, "Error (code: %u)\n", errorCount);
439 return errorCount != 0; /* 0 == pass */
test_put_chunked.c 436 unsigned int errorCount = 0;
440 errorCount += testInternalPut ();
441 errorCount += testMultithreadedPut ();
442 errorCount += testMultithreadedPoolPut ();
443 errorCount += testExternalPut ();
444 if (errorCount != 0)
445 fprintf (stderr, "Error (code: %u)\n", errorCount);
447 return errorCount != 0; /* 0 == pass */
test_quiesce.c 434 unsigned int errorCount = 0;
438 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, 0);
439 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, 0);
440 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, 0);
441 errorCount += testExternalGet ();
444 errorCount += testGet(MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_POLL);
445 errorCount += testGet (MHD_USE_THREAD_PER_CONNECTION, 0, MHD_USE_POLL);
446 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_POLL);
450 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, 0, MHD_USE_EPOLL_LINUX_ONLY);
451 errorCount += testGet (MHD_USE_SELECT_INTERNALLY, CPU_COUNT, MHD_USE_EPOLL_LINUX_ONLY)
    [all...]

Completed in 383 milliseconds

12 3 4 5 6 7 8 91011>>