| /external/wpa_supplicant/ |
| config.c | 386 int val = 0, last, errors = 0; local 412 errors++; 424 errors++; 429 return errors ? -1 : 0; 468 int val = 0, last, errors = 0; local 499 errors++; 511 errors++; 516 return errors ? -1 : 0; 760 int val = 0, last, errors = 0; local 787 errors++ 858 int last, errors = 0; local [all...] |
| ctrl_iface_udp.c | 42 int errors; member in struct:wpa_ctrl_dst 380 dst->errors++; 381 if (dst->errors > 10) { 387 dst->errors = 0;
|
| ctrl_iface_named_pipe.c | 74 int errors; member in struct:wpa_ctrl_dst 516 dst->errors++; 517 if (dst->errors > 10) 520 dst->errors = 0;
|
| ctrl_iface_unix.c | 44 int errors; member in struct:wpa_ctrl_dst 519 dst->errors++; 520 if (dst->errors > 10) { 526 dst->errors = 0;
|
| /external/qemu/proxy/ |
| proxy_common.c | 394 FD_SET( fd, sel->errors ); 396 FD_CLR( fd, sel->errors ); 410 if ( FD_ISSET(fd, sel->errors) ) 430 sel->errors = err_fds; 450 sel->errors = err_fds;
|
| /dalvik/dx/src/com/android/dx/command/dexer/ |
| Main.java | 90 /** number of errors during processing */ 91 private static int errors = 0; field in class:Main 134 errors = 0; 197 if (errors != 0) { 198 DxConsole.err.println(errors + " error" + 199 ((errors == 1) ? "" : "s") + "; aborting"); 237 errors++; 396 errors++; [all...] |
| /external/freetype/src/base/ |
| ftrfork.c | 358 FT_Error *errors ) 380 errors[i] = FT_Stream_Seek( stream, 0 ); 382 errors[i] = FT_Err_Ok; 384 if ( errors[i] ) 387 errors[i] = (funcs[i])( library, stream, base_name, 791 /* Dummy function; just sets errors */ 800 FT_Error *errors ) 813 errors[i] = FT_Err_Unimplemented_Feature;
|
| /external/wpa_supplicant/tests/ |
| test_sha1.c | 116 int errors = 0; local 125 errors++; 133 errors++; 141 errors++; 152 errors++; 161 errors++; 164 return errors;
|
| test_sha256.c | 258 int errors = 0; local 268 errors++; 280 errors++; 295 errors++; 304 errors++; 317 errors++; 329 return errors;
|
| /external/wpa_supplicant_6/wpa_supplicant/tests/ |
| test_sha256.c | 258 int errors = 0; local 268 errors++; 280 errors++; 295 errors++; 304 errors++; 317 errors++; 330 return errors;
|
| /dalvik/libcore/sql/src/test/java/tests/SQLite/ |
| DatabaseTest.java | 451 List<String> errors = tracker.getErrors(); local 453 if (errors.size() > 0) { 454 assertEquals(errors.get(0), db 456 for (String s : errors) { 577 List<String> errors = tracker.getErrors(); local 578 if (errors.size() > 0) { 579 // assertEquals(errors.get(0), 581 for (String s: errors) { 608 // errors = tracker.getErrors(); 609 // if (errors.size() > 0) 703 List<String> errors = tracker.getErrors(); local [all...] |
| /dalvik/dx/src/junit/framework/ |
| TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 10 * A failure is anticipated and checked for with assertions. Errors are 30 * Adds an error to the list of errors. The passed in exception 76 * Gets the number of detected errors. 82 * Returns an Enumeration for the errors 84 public synchronized Enumeration errors() { method in class:TestResult
|
| /dalvik/dx/src/junit/textui/ |
| ResultPrinter.java | 47 printDefects(result.errors(), result.errorCount(), "error"); 91 ", Errors: "+result.errorCount());
|
| /dalvik/libcore/junit/src/main/java/junit/framework/ |
| TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 10 * A failure is anticipated and checked for with assertions. Errors are 30 * Adds an error to the list of errors. The passed in exception 76 * Gets the number of detected errors. 82 * Returns an Enumeration for the errors 84 public synchronized Enumeration errors() { method in class:TestResult
|
| /dalvik/libcore/luni/src/test/java/com/google/coretests/ |
| ResultPrinter.java | 63 printDefects(result.errors(), result.errorCount(), "error"); 107 ", Errors: "+result.errorCount());
|
| /dalvik/libcore/luni/src/test/java/junit/textui/ |
| ResultPrinter.java | 48 printDefects(result.errors(), result.errorCount(), "error"); 92 ", Errors: "+result.errorCount());
|
| /external/bison/src/ |
| state.h | 71 states should explicitly be errors (for implementing %nonassoc). 72 For each state, the tokens that are errors for this reason are 235 void state_errs_set (state *s, int num, symbol **errors);
|
| /external/junit/src/junit/framework/ |
| TestResult.java | 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 10 * A failure is anticipated and checked for with assertions. Errors are 30 * Adds an error to the list of errors. The passed in exception 76 * Gets the number of detected errors. 82 * Returns an Enumeration for the errors 84 public synchronized Enumeration errors() { method in class:TestResult
|
| /external/junit/src/junit/textui/ |
| ResultPrinter.java | 47 printDefects(result.errors(), result.errorCount(), "error"); 91 ", Errors: "+result.errorCount());
|
| /external/wpa_supplicant_6/wpa_supplicant/ |
| ctrl_iface_udp.c | 42 int errors; member in struct:wpa_ctrl_dst 380 dst->errors++; 381 if (dst->errors > 10) { 387 dst->errors = 0;
|
| config.c | 419 int val = 0, last, errors = 0; local 445 errors++; 457 errors++; 462 return errors ? -1 : 0; 503 int val = 0, last, errors = 0; local 550 errors++; 562 errors++; 567 return errors ? -1 : 0; 845 int val = 0, last, errors = 0; local 872 errors++ 945 int last, errors = 0; local [all...] |
| /frameworks/base/test-runner/src/junit/textui/ |
| ResultPrinter.java | 48 printDefects(result.errors(), result.errorCount(), "error"); 92 ", Errors: "+result.errorCount());
|
| /external/webkit/WebCore/inspector/front-end/ |
| inspector.js | 254 get errors() 259 set errors(x) 290 if (!this.errors && !this.warnings) { 299 if (this.errors) { 302 errorElement.textContent = this.errors; 313 if (this.errors) { 315 if (this.errors == 1) { 317 errorWarningElement.title = WebInspector.UIString("%d error, %d warning", this.errors, this.warnings); 319 errorWarningElement.title = WebInspector.UIString("%d error, %d warnings", this.errors, this.warnings); 321 errorWarningElement.title = WebInspector.UIString("%d errors, %d warning", this.errors, this.warnings) [all...] |
| /bootable/bootloader/legacy/arch_msm7k/ |
| nand.c | 533 unsigned errors = 0; local 541 dprintf("flash_read_image: success (%d errors)\n", errors); 546 errors++; 556 dprintf("flash_read_image: failed (%d errors)\n", errors);
|
| /build/tools/droiddoc/src/ |
| NavTree.java | 55 addClassNodes(children, "Errors", pkg.errors());
|