Home
last modified time | relevance | path

Searched refs:errors (Results 1 – 25 of 1446) sorted by relevance

12345678910>>...58

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dparsing_context.hpp56 ParsingContext() : errors(std::make_shared<std::vector<ParsingError>>()) {} in ParsingContext()
57 …ParsingContext(std::string key_) : key(std::move(key_)), errors(std::make_shared<std::vector<Parsi… in ParsingContext()
60 errors(std::make_shared<std::vector<ParsingError>>()) in ParsingContext()
69 const std::vector<ParsingError>& getErrors() const { return *errors; } in getErrors()
118 errors->push_back({message, key}); in error()
122 errors->push_back({message, key + "[" + util::toString(child) + "]"}); in error()
126errors->push_back({message, key + "[" + util::toString(child) + "][" + util::toString(grandchild) … in error()
130 errors->reserve(errors->size() + ctx.errors->size()); in appendErrors()
131 std::move(ctx.errors->begin(), ctx.errors->end(), std::inserter(*errors, errors->end())); in appendErrors()
132 ctx.errors->clear(); in appendErrors()
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dcrc32test.c667 int errors = 0; in crc32c_test() local
691 errors++; in crc32c_test()
699 if (errors) in crc32c_test()
700 pr_warn("crc32c: %d self tests failed\n", errors); in crc32c_test()
712 int errors = 0, runs = 0; in crc32c_combine_test() local
730 errors++; in crc32c_combine_test()
736 if (errors) in crc32c_combine_test()
737 pr_warn("crc32c_combine: %d/%d self tests failed\n", errors, runs); in crc32c_combine_test()
747 int errors = 0; in crc32_test() local
774 errors++; in crc32_test()
[all …]
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dio.c57 unsigned int errors; in bch_count_backing_io_errors() local
73 errors = atomic_add_return(1, &dc->io_errors); in bch_count_backing_io_errors()
74 if (errors < dc->error_limit) in bch_count_backing_io_errors()
95 unsigned int errors; in bch_count_io_errors() local
109 errors = atomic_read(&ca->io_errors); in bch_count_io_errors()
111 old = errors; in bch_count_io_errors()
112 new = ((uint64_t) errors * 127) / 128; in bch_count_io_errors()
113 errors = atomic_cmpxchg(&ca->io_errors, in bch_count_io_errors()
115 } while (old != errors); in bch_count_io_errors()
121 unsigned int errors = atomic_add_return(1 << IO_ERROR_SHIFT, in bch_count_io_errors() local
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Ddump.py103 self.errors = 0
106 if self.errors >= 5:
116 self.errors = self.errors + 1
119 self.errors = self.errors + 1
133 self.errors = 0
140 if self.errors >= 5:
156 self.errors = self.errors + 1
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rsync/files/
H A D0001-Turn-on-pedantic-errors-at-the-end-of-configure.patch4 Subject: [PATCH] Turn on -pedantic-errors at the end of 'configure'
23 - # Turn pedantic warnings into errors to ensure an array-init overflow is an error.
24 - CFLAGS="$CFLAGS -pedantic-errors"
26 - # Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
31 - *-Wpedantic*) CFLAGS="$CFLAGS -pedantic-errors -Wno-pedantic" ;;
43 +# Enable -pedantic-errors last, so that it doesn't mess up other
45 +# prototypes like 'int main () {}' which Clang 15's -pedantic-errors
50 + # Turn pedantic warnings into errors to ensure an array-init overflow is an error.
51 + CFLAGS="$CFLAGS -pedantic-errors"
53 + # Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
[all …]
/OK3568_Linux_fs/kernel/Documentation/PCI/
H A Dpcieaer-howto.rst41 - Gathers the comprehensive error information if errors occurred.
92 When PCIe AER errors are captured, the counters / statistics are also exposed
105 PCI Express errors are classified into two types: correctable errors
106 and uncorrectable errors. This classification is based on the impacts
107 of those errors, which may result in degraded performance or function
110 Correctable errors pose no impacts on the functionality of the
112 intervention or any loss of data. These errors are detected and
113 corrected by hardware. Unlike correctable errors, uncorrectable
114 errors impact functionality of the interface. Uncorrectable errors
117 errors are further classified into non-fatal errors and fatal errors.
[all …]
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dtest.py37 errors = [ variable
80 ['5678', 'Second commit, a warning', 0, errors[0:1]],
81 ['9012', 'Third commit, error', 1, errors[0:2]],
82 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
83 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
85 ['ef01', 'Seventh commit, check directory suppression', 1, [errors[4]]],
218 errors[0].rstrip().replace('\n', '\nw+'))
228 errors[1].rstrip().replace('\n', '\n+'))
237 errors[1].rstrip().replace('\n', '\n-'))
241 errors[2].rstrip().replace('\n', '\nw+'))
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dcp-noerror22 errors = []
39 errors.extend(err.args[0])
41 errors.append((srcname, dstname, str(why)))
45 errors.extend((src, dst, str(why)))
46 if errors:
47 raise shutil.Error(errors)
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/
H A Dtest_tunnel.sh730 local errors=0
734 errors=$(( $errors + $? ))
738 errors=$(( $errors + $? ))
742 errors=$(( $errors + $? ))
746 errors=$(( $errors + $? ))
750 errors=$(( $errors + $? ))
754 errors=$(( $errors + $? ))
758 errors=$(( $errors + $? ))
762 errors=$(( $errors + $? ))
766 errors=$(( $errors + $? ))
[all …]
/OK3568_Linux_fs/kernel/Documentation/x86/x86_64/
H A Dmachinecheck.rst8 by the CPU. Uncorrected errors typically cause a machine check
17 When you see the "Machine check errors logged" message in the system
40 How often to poll for corrected machine check errors, in seconds
47 check errors (but some corrected errors might be still reported
60 0: always panic on uncorrected errors, log corrected errors
61 1: panic or SIGBUS on uncorrected errors, log corrected errors
62 2: SIGBUS or log uncorrected errors, log corrected errors
63 3: never panic or SIGBUS, log all errors (for testing only)
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-pci-devices-aer_stats5 statistical counters indicate the errors "as seen/reported by the device".
8 errors may be "seen" / reported by the link partner and not the
16 Description: List of correctable errors seen and reported by this
17 PCI device using ERR_COR. Note that since multiple errors may
20 total of all the errors in the file. Sample output::
37 Description: List of uncorrectable fatal errors seen and reported by this
38 PCI device using ERR_FATAL. Note that since multiple errors may
41 total of all the errors in the file. Sample output::
67 Description: List of uncorrectable nonfatal errors seen and reported by this
68 PCI device using ERR_NONFATAL. Note that since multiple errors
[all …]
H A Dsysfs-platform-dfl-fme48 What: /sys/bus/platform/devices/dfl-fme.0/errors/pcie0_errors
52 Description: Read-Write. Read this file for errors detected on pcie0 link.
53 Write this file to clear errors logged in pcie0_errors. Write
57 What: /sys/bus/platform/devices/dfl-fme.0/errors/pcie1_errors
61 Description: Read-Write. Read this file for errors detected on pcie1 link.
62 Write this file to clear errors logged in pcie1_errors. Write
66 What: /sys/bus/platform/devices/dfl-fme.0/errors/nonfatal_errors
70 Description: Read-only. It returns non-fatal errors detected.
72 What: /sys/bus/platform/devices/dfl-fme.0/errors/catfatal_errors
76 Description: Read-only. It returns catastrophic and fatal errors detected.
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/soundwire/
H A Derror_handling.rst5 The SoundWire PHY was designed with care and errors on the bus are going to
7 errors. Examples of this design can be found in the synchronization
8 mechanism (sync loss after two errors) and short CRCs used for the Bulk
11 The errors can be detected with multiple mechanisms:
13 1. Bus clash or parity errors: This mechanism relies on low-level detectors
15 and audio data. The current implementation only logs such errors.
17 restarting from a known position. In the case of such errors outside of a
21 and after a number of such errors are detected the bus might be reset. Note
22 that bus clashes due to programming errors (two streams using the same bit
27 not be responsible for the errors so resetting them individually is not a
[all …]
/OK3568_Linux_fs/kernel/drivers/macintosh/
H A Dwindfarm_pid.c46 st->errors[i] = error; in wf_pid_run()
53 st->errors[st->index] = error; in wf_pid_run()
58 integ += st->errors[(st->index + hlen - i) % hlen]; in wf_pid_run()
62 deriv = st->errors[st->index] - in wf_pid_run()
63 st->errors[(st->index + hlen - 1) % hlen]; in wf_pid_run()
101 st->errors[i] = error; in wf_cpu_pid_run()
109 st->errors[st->index] = error; in wf_cpu_pid_run()
116 integ += st->errors[(st->index + hlen - i) % hlen]; in wf_cpu_pid_run()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/videostab/
H A Doptical_flow.hpp67 OutputArray status, OutputArray errors) = 0;
76 OutputArray errors) = 0;
102 OutputArray status, OutputArray errors) CV_OVERRIDE;
115 OutputArray status, OutputArray errors) CV_OVERRIDE;
118 cuda::GpuMat &status, cuda::GpuMat &errors);
136 OutputArray errors) CV_OVERRIDE;
/OK3568_Linux_fs/external/xserver/dix/
H A Dregistry.c44 static char ***requests, **events, **errors; variable
124 if (!double_size(&errors, nerror, sizeof(char *))) in RegisterErrorName()
129 free(errors[error]); in RegisterErrorName()
130 errors[error] = name; in RegisterErrorName()
259 return errors[error] ? errors[error] : XREGISTRY_UNKNOWN; in LookupErrorName()
311 free(errors[nerror]); in dixFreeRegistry()
312 free(errors); in dixFreeRegistry()
316 errors = NULL; in dixFreeRegistry()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Dparselogs.py15 errors = ["error", "cannot", "can\'t", "failed"] variable
211 cls.errors = errors
216 cls.errors.extend([
306 def build_grepcmd(self, errors, ignore_errors, log): argument
309 for error in errors:
337 def parse_logs(self, errors, ignore_errors, logs, argument
345 thegrep = self.build_grepcmd(errors, ignore_errors, log)
376 result = self.parse_logs(self.errors, self.ignore_errors, log_list)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-pykickstart/files/
H A D0001-support-authentication-for-kickstart.patch17 pykickstart/errors.py | 17 +++++++++++++++++
22 diff --git a/pykickstart/errors.py b/pykickstart/errors.py
24 --- a/pykickstart/errors.py
25 +++ b/pykickstart/errors.py
27 KickstartVersionError - An exception for errors relating to unsupported
30 + KickstartAuthError - An exception for errors relating to authentication
42 + """An exception for errors relating to authentication failed while
67 -from pykickstart.errors import KickstartError
68 +from pykickstart.errors import KickstartError, KickstartAuthError
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.mpc83xx.ddrecc6 * (injecting errors is initially disabled)
8 * define inject mask (which tells the DDR controller what type of errors
11 * enable injecting errors - from now on the controller injects errors as
14 IMPORTANT NOTICE: enabling injecting multiple-bit errors is potentially
15 dangerous as such errors are NOT corrected by the controller. Therefore caution
16 should be taken when enabling the injection of multiple-bit errors: it is only
19 Errors' below). In particular, when you simply set the multiple-bit errors in
21 errors will be injected when it accesses its code, data etc.
61 16 errors were generated, Single-Bit Error flag was not set as Single Bit Error
/OK3568_Linux_fs/kernel/kernel/
H A Dtest_kprobes.c17 static int errors, handler_errors, num_tests; variable
286 errors++; in init_test_probes()
291 errors++; in init_test_probes()
297 errors++; in init_test_probes()
302 errors++; in init_test_probes()
305 if (errors) in init_test_probes()
306 pr_err("BUG: %d out of %d tests failed\n", errors, num_tests); in init_test_probes()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/places_semiauto/
H A Dtst_places.cpp79 QList<QPlaceReply::Error> *errors,
241 QList<QPlaceReply::Error> errors; in search_data() local
243 commonAreas(&dataTags, &areas, &errors, &results); in search_data()
250 << errors.at(i) in search_data()
502 QList<QPlaceReply::Error> errors; in suggestions_data() local
504 commonAreas(&dataTags, &areas, &errors, &results); in suggestions_data()
509 << errors.at(i) in suggestions_data()
681 QList<QPlaceReply::Error> *errors, in commonAreas() argument
688 errors->append(QPlaceReply::BadArgumentError); in commonAreas()
693 errors->append(QPlaceReply::BadArgumentError); in commonAreas()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/scripts/perl/
H A Drw-by-pid.pl36 $reads{$common_pid}{errors}{$ret}++;
58 $writes{$common_pid}{errors}{$ret}++;
102 foreach my $error (keys %{$reads{$pid}{errors}}) {
104 my $errcount = $reads{$pid}{errors}{$error} || 0;
142 foreach my $error (keys %{$writes{$pid}{errors}}) {
144 my $errcount = $writes{$pid}{errors}{$error} || 0;
/OK3568_Linux_fs/u-boot/scripts/dtc/pylibfdt/
H A Dlibfdt.i_shipped44 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors,
71 This is used to check for errors returned by libfdt C functions.
75 quiet: Errors to ignore (empty to raise on all errors)
96 quiet: Errors to ignore (empty to raise on all errors)
125 defaults to empty, but you can pass a list of errors that you expect.
126 If one of these errors occurs, the function will return an error number
139 quiet: Errors to ignore (empty to raise on all errors)
155 quiet: Errors to ignore (empty to raise on all errors)
170 quiet: Errors to ignore (empty to raise on all errors)
187 quiet: Errors to ignore (empty to raise on all errors)
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/cpu/quark/
H A Dhte.c301 u16 errors; in hte_basic_write_read() local
309 errors = hte_basic_data_cmp(mrc_params, addr, first_run, mode); in hte_basic_write_read()
313 return errors; in hte_basic_write_read()
330 u16 errors; in hte_write_stress_bit_lanes() local
349 errors = hte_rw_data_cmp(mrc_params, addr, HTE_LOOP_CNT, in hte_write_stress_bit_lanes()
355 return errors; in hte_write_stress_bit_lanes()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-connectivity/telepathy/telepathy-python3-0.15.19/
H A Dparallel_make.patch30 -_generated/errors.py: $(tools_dir)/python-errors-generator.xsl $(wildcard $(spec_dir)/*.xml)
31 +_generated/errors.py: _generated/__init__.py $(tools_dir)/python-errors-generator.xsl $(wildcard $…
33 $(tools_dir)/python-errors-generator.xsl \

12345678910>>...58