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

12

/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/bt/stack/rfcomm/
H A Dport_api.cc987 * errors - receive error codes
990 int PORT_SendError(uint16_t handle, uint8_t errors) { argument
993 RFCOMM_TRACE_API("PORT_SendError() handle:%d errors:0x%x", handle, errors);
1009 RFCOMM_LineStatusReq(p_port->rfc.p_mcb, p_port->dlci, errors);
/system/core/adb/
H A Dadb.cpp40 #include <android-base/errors.h>
797 // errors easier to diagnose. Note that the threads internally create inheritable handles, but
H A Dadb_auth_host.cpp32 #include <android-base/errors.h>
H A Dsysdeps.h33 #include <android-base/errors.h>
H A Dsysdeps_win32.cpp37 #include <android-base/errors.h>
584 // minimize logging spam, so don't log these errors for now.
2364 // Try to convert from data that might be UTF-8 to UTF-16, ignoring errors (just like Linux
/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
H A Dusb_windows.cpp38 #include <android-base/errors.h>
/system/core/fastboot/
H A Dfs.cpp21 #include <android-base/errors.h>
H A Dsocket.cpp31 #include <android-base/errors.h>
/system/core/init/
H A Dproperty_service.cpp788 auto errors = std::vector<std::string>{}; local
789 ParsePropertyInfoFile(file_contents, property_infos, &errors);
790 // Individual parsing errors are reported but do not cause a failed boot, which is what
792 for (const auto& error : errors) {
/system/core/logcat/tests/
H A Dlogcat_test.cpp163 size_t errors = retry; local
173 errors = retry;
175 } else if (--errors <= 0) {
/system/core/property_service/libpropertyinfoserializer/include/property_info_serializer/
H A Dproperty_info_serializer.h46 std::vector<std::string>* errors);
/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/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/core/trusty/keymaster/
H A DMakefile130 UNINIT_OPTS=--undef-value-errors=no
/system/extras/libfec/
H A Dfec_open.cpp399 f->errors = 0;
500 s->errors = f->errors;
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_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_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/extras/libfec/include/fec/
H A Dio.h58 uint64_t errors; member in struct:fec_status
/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/keymaster/
H A DMakefile183 UNINIT_OPTS=--undef-value-errors=no
/system/netd/server/
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,

Completed in 295 milliseconds

12