HomeSort by relevance Sort by last modified time
    Searched refs:ERROR (Results 251 - 275 of 942) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/drd/tests/
tc18_semabuse.stderr.exp 17 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
  /external/valgrind/main/helgrind/tests/
hg03_inherit.stderr.exp 19 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
tc13_laog1.stderr.exp 15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/
describe-block.stderr.exp 15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regexp.h 65 ERROR(val) Used for abnormal return from `compile'. `val' is the
66 error number. The error codes are:
127 ERROR (50);
170 /* Oh well, we have to translate POSIX error codes. */
181 /* There is no matching error code. */
197 ERROR (50);
  /system/core/init/
util.c 41 * name, or -1U on error.
59 * error.
90 ERROR("Failed to open socket '%s': %s\n", name, strerror(errno));
101 ERROR("Failed to unlink old socket '%s': %s\n", name, strerror(errno));
107 ERROR("Failed to bind socket '%s': %s\n", name, strerror(errno));
200 ERROR("too many mtd partitions\n");
232 * zero on error.
241 ERROR("clock_gettime(CLOCK_MONOTONIC) failed: %s\n", strerror(errno));
265 ERROR("path too long for mkdir_recursive\n");
307 ERROR("Failed to create directory %s: %s (%d)\n", buf, strerror(errno), errno)
    [all...]
init.c 171 ERROR("service '%s' requires console\n", svc->name);
177 ERROR("cannot find '%s', disabling '%s'\n", svc->args[0], svc->name);
183 ERROR("service '%s' must be one-shot to use dynamic args, disabling\n",
221 ERROR("Failed to set pid %d ioprio = %d,%d: %s\n",
247 ERROR("setgid failed: %s\n", strerror(errno));
253 ERROR("setgroups failed: %s\n", strerror(errno));
259 ERROR("setuid failed: %s\n", strerror(errno));
266 ERROR("cannot execve('%s'): %s\n", svc->args[0], strerror(errno));
290 ERROR("failed to start '%s'\n", svc->name);
392 ERROR("no such service '%s'\n", name)
    [all...]
property_service.c 268 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno);
276 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path);
374 ERROR("Unable to recieve socket options\n");
380 ERROR("sys_prop: mis-match msg size recieved: %d expected: %d errno: %d\n",
398 ERROR("sys_prop: Unable to %s service ctl [%s] uid:%d gid:%d pid:%d\n",
405 ERROR("sys_prop: permission denied uid:%d name:%s\n",
493 ERROR("Unable to read persistent property file %s errno: %d\n", path, errno);
497 ERROR("Unable to open persistent property file %s errno: %d\n", path, errno);
502 ERROR("Unable to open persistent property directory %s errno: %d\n", PERSISTENT_PROPERTY_DIR, errno);
  /external/chromium/base/
logging_unittest.cc 96 EXPECT_TRUE(LOG_IS_ON(ERROR));
104 EXPECT_TRUE(LOG_IS_ON(ERROR));
112 EXPECT_TRUE(LOG_IS_ON(ERROR));
120 EXPECT_FALSE(LOG_IS_ON(ERROR));
129 EXPECT_FALSE(LOG_IS_ON(ERROR));
138 EXPECT_FALSE(LOG_IS_ON(ERROR));
message_pump_libevent.cc 124 PLOG(ERROR) << "close";
128 PLOG(ERROR) << "close";
300 DLOG(ERROR) << "pipe() failed, errno: " << errno;
304 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
308 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
  /external/chromium/net/base/
cert_database_nss.cc 50 LOG(ERROR) << "No corresponding private key in store";
88 LOG(ERROR) << "Couldn't import user certificate.";
142 LOG(ERROR) << "PK11_GetAllTokens failed: " << PORT_GetError();
221 LOG(ERROR) << "CERT_GetCertTrust failed with error " << PORT_GetError();
260 LOG(ERROR) << "PK11_DeleteTokenCertAndKey failed: " << PORT_GetError();
265 LOG(ERROR) << "SEC_DeletePermCertificate failed: " << PORT_GetError();
  /external/libpng/
example.c 27 /* The png_jmpbuf() macro, used in error handling, became available in
76 /* Read a PNG file. You may want to return an error code if the read
93 return (ERROR);
104 /* Create and initialize the png_struct with the desired error handler
116 return (ERROR);
125 return (ERROR);
128 /* Set error handling if you are using the setjmp/longjmp method (this is
130 * set up your own error handlers in the png_create_read_struct() earlier.
139 return (ERROR);
409 /* Create and initialize the png_struct with the desired error handle
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 438 if (status == null || status.getSeverity() != IStatus.ERROR) {
444 if (status == null || status.getSeverity() != IStatus.ERROR) {
451 if (status == null || status.getSeverity() != IStatus.ERROR) {
460 if (status == null || status.getSeverity() != IStatus.ERROR) {
468 if (status == null || status.getSeverity() != IStatus.ERROR) {
475 if (status == null || status.getSeverity() != IStatus.ERROR) {
484 if (status == null || status.getSeverity() != IStatus.ERROR) {
486 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
493 // -- update UI & enable finish if there's no error
494 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR);
    [all...]
SampleSelectionPage.java 249 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
252 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, "Choose a sample");
254 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
260 // -- update UI & enable finish if there's no error
261 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR);
264 status.getSeverity() == IStatus.ERROR
265 ? IMessageProvider.ERROR : IMessageProvider.WARNING);
ProjectNamePage.java 437 if (status == null || status.getSeverity() != IStatus.ERROR) {
444 // -- update UI & enable finish if there's no error
445 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR);
448 status.getSeverity() == IStatus.ERROR
449 ? IMessageProvider.ERROR : IMessageProvider.WARNING);
479 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
483 // warning if it is not empty. We don't put an error
495 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
500 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
510 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_proxy_api_helpers.cc 8 // Throughout this code, we report errors to the user by setting an |error|
11 // caught this error before. In all other cases we are dealing with internal
12 // errors and log to LOG(ERROR).
62 std::string* error) {
69 LOG(ERROR) << "Invalid mode for proxy settings: " << proxy_mode;
77 std::string* error) {
87 LOG(ERROR) << "'pacScript.url' could not be parsed.";
91 *error = "'pacScript.url' supports only ASCII URLs "
101 std::string* error) {
110 LOG(ERROR) << "'pacScript.data' could not be parsed."
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 171 // Check for ERROR keys in the hashtable, and print report
179 logMsg("# Check any 'ERROR' items above against the Xalan FAQs");
202 * with a key that is prefixed with {@link #ERROR 'ERROR.'} so it
204 * constant will be set as well for any error.</p>
207 * own - and even a non-error state doesn't guaruntee that
253 logMsg("# ERROR: writeEnvironmentReport called with null Hashtable");
281 // Note: we could just check for the ERROR key by itself,
285 if (keyStr.startsWith(ERROR))
305 public static final String ERROR = "ERROR."
    [all...]
  /external/srec/make/asr/
Makefile.defs 229 ERROR += \
296 ERROR += \
362 ERROR += \
453 ERROR += \
474 ERROR += \
552 ERROR += \
572 ERROR += \
648 ERROR += \
668 ERROR += \
745 ERROR +=
    [all...]
  /external/chromium/chrome/browser/sync/glue/
preference_model_associator.cc 66 LOG(ERROR) << "Failed to deserialize preference value: "
100 LOG(ERROR) << "Failed to create preference sync node.";
120 LOG(ERROR) << "Server did not create the top-level preferences node. We "
128 LOG(ERROR) << "Server did not create the top-level preferences node. We "
154 LOG(ERROR) << "Server did not create the top-level preferences node. We "
162 LOG(ERROR) << "Server did not create the top-level preferences node. We "
246 LOG(ERROR) << "Failed to serialize preference value.";
typed_url_model_associator.cc 39 LOG(ERROR) << "Could not get the typed_url entries.";
49 LOG(ERROR) << "Could not get the url's visits.";
64 LOG(ERROR) << "Server did not create the top-level typed_url node. We "
77 LOG(ERROR) << "Visit count does not match.";
95 LOG(ERROR) << "Failed to edit typed_url sync node.";
119 LOG(ERROR) << "Failed to create typed_url sync node.";
136 LOG(ERROR) << "Failed to fetch child node.";
192 LOG(ERROR) << "Typed url node lookup failed.";
214 LOG(ERROR) << "Server did not create the top-level typed_url node. We "
222 LOG(ERROR) << "Server did not create the top-level typed_url node. We
    [all...]
password_model_associator.cc 55 LOG(ERROR) << "Could not get the password entries.";
66 LOG(ERROR) << "Server did not create the top-level password node. We "
90 LOG(ERROR) << "Failed to edit password sync node.";
103 LOG(ERROR) << "Failed to create password sync node.";
121 LOG(ERROR) << "Failed to fetch child node.";
146 LOG(ERROR) << "Failed to write passwords.";
160 LOG(ERROR) << "Typed url node lookup failed.";
182 LOG(ERROR) << "Server did not create the top-level password node. We "
190 LOG(ERROR) << "Server did not create the top-level password node. We "
  /system/core/sdcard/
sdcard.c 69 #define ERROR(x...) fprintf(stderr,x)
171 ERROR("opendir %s failed: %s", path, strerror(errno));
233 ERROR("lstat('%s') errno %d\n", path, errno);
266 ERROR("opendir %s failed: %s", path, strerror(errno));
276 ERROR("strdup failed - out of memory\n");
380 ERROR("Zero refcnt %p\n", node);
415 /* XXX error? */
473 hdr.error = err;
476 // ERROR("*** %d ***\n", err);
488 hdr.error = 0
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_harness.cc 142 LOG(ERROR) << "SetupSync(): service_ is null.";
157 LOG(ERROR) << "OnBackendInitialized() not seen after "
173 LOG(ERROR) << "Initial sync cycle did not complete after "
294 LOG(ERROR) << "Sync disabled for Client " << id_ << ".";
315 LOG(ERROR) << "Sync disabled for Client " << id_ << ".";
340 LOG(ERROR) << "Invalid wait state:" << wait_state_;
390 LOG(ERROR) << "Sync disabled for Client " << id_ << ".";
411 LOG(ERROR) << "Sync disabled for Client " << id_ << ".";
617 LOG(ERROR) << "Did not receive EncryptionComplete notification after"
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
InstrumentationResultParser.java 38 * <p>If fatal error occurred when attempted to run the tests:
40 * INSTRUMENTATION_STATUS: Error=error Message
45 * INSTRUMENTATION_RESULT: shortMsg=error Message
49 * pairs, delimited by a start(1)/pass(0)/fail(-2)/error(-1) status code result. At end of test
75 private static final String ERROR = "Error";
86 KNOWN_KEYS.add(StatusKeys.ERROR);
98 private static final int ERROR = -1;
201 /** Error message supplied when no parseable test results are received from test run. *
    [all...]
  /external/android-mock/src/com/google/android/testing/mocking/
UsesMocksProcessor.java 78 logger.printMessage(Kind.ERROR, e);
210 logger.printMessage(Kind.ERROR, "Internal Error saving mock: " + clazz.getClassName());
211 logger.printMessage(Kind.ERROR, e);
231 logger.printMessage(Kind.ERROR, e);
233 logger.printMessage(Kind.ERROR, e);

Completed in 2873 milliseconds

<<11121314151617181920>>