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

1 2 3 4 5 6 7 8 91011>>

  /external/libmicrohttpd/src/testcurl/https/
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_https_get.c 101 unsigned int errorCount = 0;
121 errorCount +=
123 errorCount +=
125 print_test_result (errorCount, argv[0]);
129 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_tls_options.c 83 unsigned int errorCount = 0;
135 errorCount++;
150 errorCount++;
154 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_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_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_parallel_threads.c 137 unsigned int errorCount = 0;
170 errorCount +=
178 errorCount +=
186 if (errorCount != 0)
190 return errorCount != 0;
test_empty_response.c 190 unsigned int errorCount = 0;
197 if (0 != (errorCount = testInternalSelectGet ()))
198 fprintf (stderr, "Fail: %d\n", errorCount);
200 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/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...]
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_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_iplimit.c 301 unsigned int errorCount = 0;
307 errorCount |= testMultithreadedGet ();
308 errorCount |= testMultithreadedPoolGet ();
309 if (errorCount != 0)
310 fprintf (stderr, "Error (code: %u)\n", errorCount);
312 return errorCount != 0; /* 0 == pass */
test_long_header.c 241 unsigned int errorCount = 0;
247 errorCount += testLongUrlGet ();
248 errorCount += testLongHeaderGet ();
249 if (errorCount != 0)
250 fprintf (stderr, "Error (code: %u)\n", errorCount);
252 return errorCount != 0; /* 0 == pass */
test_parse_cookies.c 239 unsigned int errorCount = 0;
245 errorCount += testExternalGet ();
246 if (errorCount != 0)
247 fprintf (stderr, "Error (code: %u)\n", errorCount);
249 return errorCount != 0; /* 0 == pass */
test_process_arguments.c 238 unsigned int errorCount = 0;
244 errorCount += testExternalGet ();
245 if (errorCount != 0)
246 fprintf (stderr, "Error (code: %u)\n", errorCount);
248 return errorCount != 0; /* 0 == pass */
test_timeout.c 277 unsigned int errorCount = 0;
283 errorCount += testWithoutTimeout ();
284 errorCount += testWithTimeout ();
285 if (errorCount != 0)
288 errorCount);
293 return errorCount; /* 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 */
  /external/libchrome/base/third_party/icu/
icu_utf.cc 194 uint8_t errorCount = count;
202 c=utf8_errorValue[errorCount-count];
  /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 */
  /frameworks/base/tools/stats_log_api_gen/
test_collation.cpp 86 int errorCount = collate_atoms(Event::descriptor(), &atoms);
88 EXPECT_EQ(0, errorCount);
154 int errorCount = collate_atoms(IntAtom::descriptor(), &atoms);
156 EXPECT_EQ(1, errorCount);
164 int errorCount = collate_atoms(BadTypesEvent::descriptor(), &atoms);
166 EXPECT_EQ(2, errorCount);
174 int errorCount = collate_atoms(BadSkippedFieldSingle::descriptor(), &atoms);
176 EXPECT_EQ(1, errorCount);
185 int errorCount = collate_atoms(BadSkippedFieldMultiple::descriptor(), &atoms);
187 EXPECT_EQ(2, errorCount);
    [all...]

Completed in 746 milliseconds

1 2 3 4 5 6 7 8 91011>>