HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 101 - 125 of 1103) sorted by null

1 2 3 45 6 7 8 91011>>

  /bionic/libc/dns/resolv/
res_stats.c 57 android_net_res_stats_aggregate(struct __res_stats* stats, int* successes, int* errors,
61 int e = 0; // errors
63 int ie = 0; // internal errors
74 // as well as unknown codes as errors.
98 *errors = e;
121 int errors = -1; local
126 android_net_res_stats_aggregate(stats, &successes, &errors, &timeouts, &internal_errors,
128 if (successes >= 0 && errors >= 0 && timeouts >= 0) {
129 int total = successes + errors + timeouts;
132 "= %d, rtt = %d, min_samples = %d\n", successes, errors, timeouts, internal_errors
    [all...]
  /external/fec/
rstest.c 72 int errors; local
83 for(errors=0;errors<=(nn-kk)/2;errors++){
91 /* Make temp copy, seed with errors */
96 for(i=0;i<errors;i++){
117 if(derrors != errors){
118 printf("(%d,%d) decoder says %d errors, true number is %d\n",nn,kk,derrors,errors);
128 printf("(%d,%d) decoder uncorrected errors! output ^ input:",nn,kk)
144 int errors; local
225 int errors; local
    [all...]
  /external/libcups/cups/
testi18n.c 121 errors; /* Error count */ local
198 errors = 0;
219 errors ++;
244 errors ++;
267 errors ++;
286 errors ++;
293 errors ++;
298 errors ++;
312 errors ++;
321 errors ++
    [all...]
  /external/ltp/testcases/network/multicast/mc_member/
mc_member_test.c 13 static int errors; variable
91 errors++;
104 if (errors)
133 errors++;
167 errors++;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/
4-1.c 68 int errors = 0; local
222 errors++;
233 if (errors != 0)
  /external/selinux/libsepol/src/
genbools.c 74 int errors = 0, changes = 0; local
94 errors++;
99 errors++;
124 errors++;
131 errors++;
143 if (errors)
146 return errors ? -1 : 0;
214 int rc, i, errors = 0; local
227 errors++;
233 errors++
    [all...]
  /external/vogar/src/vogar/target/junit/
VogarBlockJUnit4ClassRunner.java 124 public void validatePublicVoidNoArg(boolean isStatic, List<Throwable> errors) {
126 errors.add(new AssertionFailedError("Method \"" + name + "\" not found"));
  /hardware/interfaces/audio/2.0/vts/functional/utility/
ValidateXml.cpp 69 const std::string& getErrors() { return errors; }
80 self->errors += "Error: ";
81 self->errors += formatedMsg;
87 std::string errors; member in struct:android::hardware::audio::test::Libxml2Global
100 "\n Which is: " + xsdFilePath + "Libxml2 errors\n" +
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
__init__.py 30 errors = "strict" variable in class:_GdbFile
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
__init__.py 30 errors = "strict" variable in class:_GdbFile
  /system/extras/libfec/
fec_process.cpp 27 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;
  /toolchain/binutils/binutils-2.25/gold/
parameters.h 30 class Errors;
40 // 1) An Errors struct. Any part of the code that wants to log an
41 // error can use parameters->errors().
58 set_errors(Errors* errors);
73 Errors*
74 errors() const function in class:gold::Parameters
191 Errors* errors_;
209 set_parameters_errors(Errors* errors);
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 30 import com.google.doclava.Errors;
32 import com.google.doclava.Errors.ErrorMessage;
76 Errors.printErrors(report.errors());
102 level = Errors.ERROR;
104 level = Errors.WARNING;
106 level = Errors.HIDDEN;
108 Errors.setErrorLevel(Integer.parseInt(a[1]), level);
111 return new Report(2, Errors.getErrors());
144 return new Report(1, Errors.getErrors())
233 private Set<ErrorMessage> errors; field in class:ApiCheck.Report
244 public Set<ErrorMessage> errors() { method in class:ApiCheck.Report
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InternalInjectorCreator.java 62 private final Errors errors = new Errors(); field in class:InternalInjectorCreator
72 injectionRequestProcessor = new InjectionRequestProcessor(errors, initializer);
104 shells = shellBuilder.build(initializer, bindingData, stopwatch, errors);
134 bindingData.runCreationListeners(errors);
140 initializer.validateOustandingInjections(errors);
143 new LookupProcessor(errors).process(shells);
145 ((DeferredLookups) shell.getInjector().lookups).initialize(errors);
155 errors.throwCreationExceptionIfErrorsExist()
180 loadEagerSingletons(shell.getInjector(), shellBuilder.getStage(), errors); local
    [all...]
MembersInjectorStore.java 43 @Override protected MembersInjectorImpl<?> create(TypeLiteral<?> type, Errors errors)
45 return createWithListeners(type, errors);
67 public <T> MembersInjectorImpl<T> get(TypeLiteral<T> key, Errors errors) throws ErrorsException {
68 return (MembersInjectorImpl<T>) cache.get(key, errors);
87 private <T> MembersInjectorImpl<T> createWithListeners(TypeLiteral<T> type, Errors errors)
89 int numErrorsBefore = errors.size();
95 errors.merge(e.getErrorMessages())
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRuleSet.java 146 StringBuilder errors = null; local
161 if (errors == null) {
162 errors = new StringBuilder();
164 errors.append("\n");
166 errors.append("Rule " + r1 + " masks " + r2);
172 if (errors != null) {
173 throw new IllegalArgumentException(errors.toString());
  /external/junit/src/main/java/org/junit/experimental/theories/
Theories.java 77 protected void collectInitializationErrors(List<Throwable> errors) {
78 super.collectInitializationErrors(errors);
79 validateDataPointFields(errors);
80 validateDataPointMethods(errors);
83 private void validateDataPointFields(List<Throwable> errors) {
91 errors.add(new Error("DataPoint field " + field.getName() + " must be static"));
94 errors.add(new Error("DataPoint field " + field.getName() + " must be public"));
99 private void validateDataPointMethods(List<Throwable> errors) {
107 errors.add(new Error("DataPoint method " + method.getName() + " must be static"));
110 errors.add(new Error("DataPoint method " + method.getName() + " must be public"))
133 validateParameterSupplier(annotation.value(), errors); local
    [all...]
  /external/junit/src/main/java/org/junit/runners/
BlockJUnit4ClassRunner.java 123 protected void collectInitializationErrors(List<Throwable> errors) {
124 super.collectInitializationErrors(errors);
126 validateNoNonStaticInnerClass(errors);
127 validateConstructor(errors);
128 validateInstanceMethods(errors);
129 validateFields(errors);
130 validateMethods(errors);
133 protected void validateNoNonStaticInnerClass(List<Throwable> errors) {
137 errors.add(new Exception(gripe));
142 * Adds to {@code errors} if the test class has more than one constructor
196 RULE_VALIDATOR.validate(getTestClass(), errors); local
200 RULE_METHOD_VALIDATOR.validate(getTestClass(), errors); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestResult.java 80 public Enumeration<TestFailure> errors() { method in class:GnssCtsTestResult
81 return mWrappedTestResult.errors();
  /cts/hostsidetests/incident/apps/errorsapp/src/com/android/server/cts/errors/
ErrorsTests.java 16 package com.android.server.cts.errors;
  /cts/tests/sensor/src/android/hardware/cts/
SensorAdditionalInfoTest.java 53 List<String> errors = new ArrayList<String>(); local
66 errors.add("Sensor: " + s.getName() + ", error: " + e.getMessage());
69 if (errors.size() > 0) {
73 for (String error : errors) {
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 97 std::vector<std::string>* errors) {
110 errors->push_back("The library \"" + path +
115 errors->push_back("The library \"" + path + "\" is not a public library but it loaded.");
121 errors->push_back("unexpected dlerror: " + err);
130 std::vector<std::string>* errors) {
140 errors->push_back("Failed to open " + dir + ": " + strerror(errno));
155 } else if (!check_lib(path, library_path, libraries, errors)) {
219 std::vector<std::string> errors; local
225 errors.push_back("Errors in vendor public library file:" + error_msg)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_runner.py 46 errors = [] variable in class:TestCleanUp.testCleanUpWithErrors.MockResult
48 self.errors.append((test, exc_info))
67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
  /external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc 65 errors.push_back(mstd);
78 std::vector<std::string> errors; member in class:net::__anon13417::MockJSBindings
163 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
178 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
211 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
245 ASSERT_EQ(1U, bindings->errors.size());
247 bindings->errors[0]);
276 ASSERT_EQ(1U, bindings->errors.size());
279 bindings->errors[0]);
324 ASSERT_EQ(1U, bindings->errors.size())
    [all...]
  /external/doclava/src/com/google/doclava/
TodoFile.java 59 public int errors; field in class:TodoFile.PackageStats
83 String base = classBase + ".errors.";
84 int errors = 0; local
88 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
89 errors++;
98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
103 errors++;
112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
117 errors++;
127 setHDF(data, base + errors, f.position(), f.name(), MISSING)
    [all...]

Completed in 1782 milliseconds

1 2 3 45 6 7 8 91011>>