Searched refs:errors (Results 1 - 25 of 36) sorted by relevance

12

/system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
H A DErrorsTest.java28 Errors errors = new Errors();
29 assertTrue(errors.isEmpty());
30 assertFalse(errors.hasError());
31 assertFalse(errors.hasFatal());
33 errors.addWarning("Hello");
34 assertFalse(errors.isEmpty());
35 assertFalse(errors.hasError());
36 assertFalse(errors.hasFatal());
38 TestUtils.assertContains(errors.asString(), "Hello");
43 Errors errors
[all...]
/system/extras/libfec/test/
H A Dtest_rs.c39 int i, rc, neras, errors; local
56 printf("%d errors\n", neras);
69 errors = 0;
73 ++errors;
76 printf("\t\t%d errors in output\n", errors);
82 errors = 0;
86 ++errors;
89 printf("\t\t%d errors in output\n", errors);
[all...]
/system/core/property_service/libpropertyinfoserializer/
H A Dproperty_info_file.cpp98 std::vector<std::string>* errors) {
101 errors->clear();
112 errors->emplace_back(parse_error);
96 ParsePropertyInfoFile(const std::string& file_contents, std::vector<PropertyInfoEntry>* property_infos, std::vector<std::string>* errors) argument
/system/extras/libfec/
H A Dfec_process.cpp27 size_t errors; member in struct:process_info
38 p->rc = p->func(p->f, p->buf, p->count, p->offset, &p->errors);
94 info[i].errors = 0;
129 f->errors += p->errors;
H A Dfec_read.cpp106 of bytes corrected in `errors' */
108 bool use_erasures, uint8_t *ecc_data, size_t *errors)
132 /* to improve our chances of correcting IO errors, initialize the
141 /* treat errors as corruption */
200 warn("RS block %" PRIu64 ": corrected %zu errors", rsb, nerrs);
201 *errors += nerrs;
232 /* reads `count' bytes from `offset' and corrects possible errors without
233 erasure detection, returning the number of corrected bytes in `errors' */
235 uint64_t offset, size_t *errors)
241 check(errors);
107 __ecc_read(fec_handle *f, void *rs, uint8_t *dest, uint64_t offset, bool use_erasures, uint8_t *ecc_data, size_t *errors) argument
234 ecc_read(fec_handle *f, uint8_t *dest, size_t count, uint64_t offset, size_t *errors) argument
285 verity_read(fec_handle *f, uint8_t *dest, size_t count, uint64_t offset, size_t *errors) argument
[all...]
H A Dfec_private.h105 uint64_t errors; member in struct:fec_handle
120 uint64_t offset, size_t *errors);
145 /* warnings, errors, debug output */
H A Dfec_open.cpp399 f->errors = 0;
500 s->errors = f->errors;
H A Dfec_verity.cpp183 corrects errors if necessary, and copies valid data blocks for later use
545 mode, rewrites the metadata if it had errors */
558 uint64_t errors = f->errors; local
622 if (f->mode & O_RDWR && f->errors > errors &&
/system/netd/server/
H A DResolverStats.h32 STATS_ERRORS, // # errors
34 STATS_INTERNAL_ERRORS, // # internal errors
42 int errors {-1};
70 cur[STATS_ERRORS] = errors;
85 errors = cur[STATS_ERRORS];
H A DResolverController.cpp465 android_net_res_stats_aggregate(&res_stats[i], &cur_stats.successes, &cur_stats.errors,
558 dw.println("DNS servers: # IP (total, successes, errors, timeouts, internal errors, "
564 int total = s.successes + s.errors + s.timeouts + s.internal_errors;
568 total, s.successes, s.errors, s.timeouts, s.internal_errors,
/system/core/property_service/property_info_checker/
H A Dproperty_info_checker.cpp155 auto errors = std::vector<std::string>{}; local
156 ParsePropertyInfoFile(file_contents, &property_info_entries, &errors);
157 if (!errors.empty()) {
158 for (const auto& error : errors) {
/system/update_engine/
H A Dservice_delegate_android_interface.h25 #include <brillo/errors/error.h>
H A Dcommon_service.h25 #include <brillo/errors/error.h>
34 // Error domain for all the service errors.
H A Dbinder_service_android.cc22 #include <brillo/errors/error.h>
H A Dcommon_service_unittest.cc22 #include <brillo/errors/error.h>
H A Ddbus_service.h26 #include <brillo/errors/error.h>
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
H A DTzLookupGenerator.java167 // Report all warnings / errors
206 // errors.
259 boolean errors = false;
264 errors = true;
267 if (errors) {
435 Errors errors) {
441 errors.addFatal("Bad offset string: " + utcOffsetString);
447 errors.addWarning(
453 errors.addFatal("Time zone ID=" + timeZoneIdIn + " is not valid");
463 errors
433 validateNonDstOffset(long offsetSampleTimeMillis, CountryZonesFile.Country country, CountryZonesFile.TimeZoneMapping timeZoneIn, Errors errors) argument
[all...]
/system/core/property_service/libpropertyinfoserializer/include/property_info_serializer/
H A Dproperty_info_serializer.h46 std::vector<std::string>* errors);
/system/update_engine/common/
H A Daction_processor.h23 #include <brillo/errors/error.h>
/system/core/adb/client/
H A Dmain.cpp28 #include <android-base/errors.h>
160 // keep around a copy of the stderr fd and use that to write any errors
/system/extras/libfec/include/fec/
H A Dio.h58 uint64_t errors; member in struct:fec_status
/system/security/keystore/tests/
H A DMakefile92 UNINIT_OPTS=--undef-value-errors=no
/system/bt/stack/include/
H A Dport_api.h496 * errors - receive error codes
499 extern int PORT_SendError(uint16_t handle, uint8_t errors);
/system/core/fastboot/
H A Dfs.cpp21 #include <android-base/errors.h>
H A Dsocket.cpp31 #include <android-base/errors.h>

Completed in 351 milliseconds

12