HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 526 - 550 of 3032) sorted by null

<<21222324252627282930>>

  /external/selinux/policycoreutils/scripts/
chcat 35 def errorExit(error):
37 sys.stderr.write("%s\n" % error)
46 error( "User %s does not exist" % u)
363 def error(msg): function
369 error("Requires a mls enabled system")
372 error("Requires an SELinux enabled system")
398 except getopt.error, error:
399 errorExit(_("Options Error %s ") % error.msg
    [all...]
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLocationAwareLog.java 33 * JCL's FATAL level is mapped to ERROR. All other levels map one to one.
202 public void error(Object message) { method in class:SLF4JLocationAwareLog
215 public void error(Object message, Throwable t) { method in class:SLF4JLocationAwareLog
220 * Converts the input parameter to String and then delegates to the error
232 * error method of the wrapped <code>org.slf4j.Logger</code> instance.
SLF4JLog.java 32 * JCL's FATAL level is mapped to ERROR. All other levels map one to one.
199 public void error(Object message) { method in class:SLF4JLog
200 logger.error(String.valueOf(message));
212 public void error(Object message, Throwable t) { method in class:SLF4JLog
213 logger.error(String.valueOf(message), t);
217 * Converts the input parameter to String and then delegates to the error
224 logger.error(String.valueOf(message));
229 * error method of the wrapped <code>org.slf4j.Logger</code> instance.
237 logger.error(String.valueOf(message), t);
  /external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
LogServiceImpl.java 82 delegate.error(message);
107 delegate.error(message, exception);
135 delegate.error(createMessage(sr, message));
189 delegate.error(createMessage(sr, message), exception);
  /external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
AndroidLoggerAdapter.java 48 * <tr><td>ERROR</td><td>{@link android.util.Log#ERROR}</td></tr>
443 * Is this logger instance enabled for level ERROR?
445 * @return True if this Logger is enabled for level ERROR, false otherwise.
448 return isLoggable(Log.ERROR);
452 * Log a message object at the ERROR level.
457 public void error(String msg) { method in class:AndroidLoggerAdapter
458 log(Log.ERROR, msg, null);
462 * Log a message at the ERROR level according to the specified format and
467 * for the ERROR level
475 public void error(String format, Object arg) { method in class:AndroidLoggerAdapter
495 public void error(String format, Object arg1, Object arg2) { method in class:AndroidLoggerAdapter
513 public void error(String format, Object... argArray) { method in class:AndroidLoggerAdapter
526 public void error(String msg, Throwable t) { method in class:AndroidLoggerAdapter
    [all...]
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
SubstituteLogger.java 35 * error code</a> documentation.
249 public void error(String msg) { method in class:SubstituteLogger
250 delegate().error(msg);
253 public void error(String format, Object arg) { method in class:SubstituteLogger
254 delegate().error(format, arg);
257 public void error(String format, Object arg1, Object arg2) { method in class:SubstituteLogger
258 delegate().error(format, arg1, arg2);
261 public void error(String format, Object... arguments) { method in class:SubstituteLogger
262 delegate().error(format, arguments);
265 public void error(String msg, Throwable t) method in class:SubstituteLogger
273 public void error(Marker marker, String msg) { method in class:SubstituteLogger
277 public void error(Marker marker, String format, Object arg) { method in class:SubstituteLogger
281 public void error(Marker marker, String format, Object arg1, Object arg2) { method in class:SubstituteLogger
285 public void error(Marker marker, String format, Object... arguments) { method in class:SubstituteLogger
289 public void error(Marker marker, String msg, Throwable t) { method in class:SubstituteLogger
    [all...]
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jLoggerAdapter.java 478 * Is this logger instance enabled for level ERROR?
480 * @return True if this Logger is enabled for level ERROR, false otherwise.
483 return logger.isEnabledFor(Level.ERROR);
487 * Log a message object at the ERROR level.
492 public void error(String msg) { method in class:Log4jLoggerAdapter
493 logger.log(FQCN, Level.ERROR, msg, null);
497 * Log a message at the ERROR level according to the specified format and
502 * for the ERROR level.
510 public void error(String format, Object arg) { method in class:Log4jLoggerAdapter
511 if (logger.isEnabledFor(Level.ERROR)) {
533 public void error(String format, Object arg1, Object arg2) { method in class:Log4jLoggerAdapter
554 public void error(String format, Object... argArray) { method in class:Log4jLoggerAdapter
570 public void error(String msg, Throwable t) { method in class:Log4jLoggerAdapter
    [all...]
  /external/vboot_reference/utility/
bmpblk_font.c 25 static void error(const char *fmt, ...) function
33 #define fatal(args...) do { error(args); exit(1); } while(0)
50 /* Print help and return error */
80 error("Unable to stat %s: %s\n", filename, strerror(errno));
85 error("File %s is empty\n", filename);
91 error("Unable to open %s: %s\n", filename, strerror(errno));
97 error("Unable to mmap %s: %s\n", filename, strerror(errno));
163 error("Can't write header to %s: %s\n", outfile, strerror(errno));
176 error("Unable to parse the character from filename %s\n", imgfile);
185 error("%s does not contain a valid BMP image\n", imgfile)
    [all...]
  /external/webp/src/utils/
quant_levels.c 104 // Compute convergence error.
107 const double error = s - inv_q_level[q_level[s]]; local
108 err += freq[s] * error * error;
111 // Check for convergence: we stop as soon as the error is no
135 // Store sum of squared error if needed.
  /external/webrtc/src/system_wrappers/source/
condition_variable_posix.cc 32 const int error = ptr->Construct(); local
33 if (error)
event_posix.cc 33 const int error = ptr->Construct(); local
34 if (error)
thread_posix.cc 85 const int error = ptr->Construct(); local
86 if (error)
  /external/wpa_supplicant_8/src/ap/
peerkey_auth.c 57 struct rsn_error_kde error; local
60 "Sending SMK Error");
69 error.mui = host_to_be16(mui);
70 error.error_type = host_to_be16(error_type);
72 (u8 *) &error, sizeof(error), NULL, 0);
332 struct rsn_error_kde error; local
336 wpa_printf(MSG_INFO, "RSN: Failed to parse KDEs in SMK Error");
341 kde.error == NULL || kde.error_len < sizeof(error)) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
aacenc.c 42 int error; local
56 error = 0;
85 error = 1;
88 if(!error)
94 error = 1;
98 if (!error) {
100 error = (PsyNew(&hAacEnc->psyKernel, MAX_CHANNELS, pMemOP) ||
104 if (!error) {
106 error = QCOutNew(&hAacEnc->qcOut,MAX_CHANNELS, pMemOP);
109 if (!error) {
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 81 // Set up error management
83 JpegError error; local
84 error.parent = this;
86 mCInfo.err = jpeg_std_error(&error);
90 if (checkError("Error initializing compression")) return false;
110 if (checkError("Error configuring defaults")) return false;
114 if (checkError("Error starting compression")) return false;
125 if (checkError("Error while compressing")) return false;
134 if (checkError("Error while finishing compression")) return false;
193 JpegError *error = static_cast<JpegError*>(cinfo->err) local
    [all...]
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
TestCaseCollector.java 114 mTestCases.add(error(clazz, "InstantiationException: could not instantiate " + method
117 mTestCases.add(error(clazz, "IllegalAccessException: could not instantiate " + method
122 private UiAutomatorTestCase error(Class<?> clazz, final String message) { method in class:TestCaseCollector
  /frameworks/base/core/jni/
android_util_Log.cpp 39 jint error; member in struct:android::levels_t
128 levels.error = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "ERROR", "I"));
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 68 const int32_t error = OpenArchive(zipFileName, &handle); local
69 if (error) {
70 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error));
85 const int32_t error = FindEntry(mHandle, data->name, &(data->entry)); local
86 if (error) {
138 int32_t error = StartIteration(mHandle, &(ze->cookie), local
141 if (error) {
142 ALOGW("Could not start iteration over %s: %s", mFileName, ErrorCodeString(error));
154 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name)) local
229 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry), local
247 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd); local
    [all...]
  /frameworks/base/tools/aapt/
SourcePos.cpp 16 ERROR
21 String8 error; member in struct:ErrorPos
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
42 error(that.error),
50 error(e),
60 this->error = rhs.error;
76 case ERROR:
77 type = "error: "
114 SourcePos::error(const char* fmt, ...) const function in class:SourcePos
    [all...]
  /frameworks/base/tools/aapt2/
ManifestValidator.cpp 49 logger.error(parser->getLineNumber())
107 logger.error(parser->getLineNumber())
127 logger.error(parser->getLineNumber())
148 logger.error(lineNumber)
163 logger.error(lineNumber)
174 logger.error(lineNumber)
190 bool error = false; local
201 logger.error(parser->getLineNumber())
204 error = true;
206 error |= !validateInlineAttribute(parser, idx, logger, kPackageIdentSet)
    [all...]
  /frameworks/compile/libbcc/lib/Support/
Disassembler.cpp 83 std::string error; local
85 llvm::TargetRegistry::lookupTarget(pTriple, error);
89 pTriple, error.c_str());
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 276 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath;
327 std::string error; local
331 m_pConfig->targets().getArch(), triple, error);
335 fatal(diag::fatal_cannot_init_target) << triple.str() << error;
  /frameworks/rs/api/
Scanner.cpp 98 ostream& Scanner::error() { function in class:Scanner
99 return error(mLineNumber);
102 ostream& Scanner::error(int lineNumber) { function in class:Scanner
104 cerr << mFileName << ":" << lineNumber << ": error: ";
112 error() << "Unexpected: \" " << mValue << "\".\n";
120 error() << "Found \"" << mTag << "\" while looking for \"" << tag << "\".\n";
144 error() << "Did not expect \"" << mValue << "\" after \"" << mTag << "\".\n";
156 error() << "Missing closing double quote\n";
178 error() << "Missing variable name\n";
183 error() << "The '*' should be attached to the type\n"
    [all...]
  /hardware/intel/bootstub/
e820_bios.S 137 jc error /* EFLGAS.CF is set */
139 jne error /* eax is not 'SMAP' */
141 jl error /* returned buffer len < 20 */
143 jg error /* returned buffer len > provided buffer len */
157 error: label
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct32x32_test.cc 120 const uint32_t error = diff * diff; local
121 if (max_error < error)
122 max_error = error;
123 total_error += error;
133 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
136 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
158 << "Error: 32x32 FDCT versions have mismatched coefficients";
162 << "Error: 32x32 FDCT rd has mismatched coefficients"
235 const int error = diff * diff; local
    [all...]

Completed in 715 milliseconds

<<21222324252627282930>>