HomeSort by relevance Sort by last modified time
    Searched defs:fatal (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/devscripts/
licensecheck.pl 142 sub fatal($);
244 fatal "--no-conf is only acceptable as the first command-line option!";
658 sub fatal($) { subroutine
661 (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d;
  /external/chromium_org/content/browser/ssl/
ssl_cert_error_handler.h 29 bool fatal);
36 bool fatal() const { return fatal_; } function in class:content::SSLCertErrorHandler
50 // certificate errors to be fatal.
  /external/fio/
configure 32 fatal() { function
81 fatal "You can run configure with --disable-werror to bypass this check."
105 fatal "ERROR"
346 fatal "compile test failed"
406 fatal "Unknown wordsize"
1205 fatal "Unknown wordsize!"
  /external/llvm/utils/llvm-build/llvmbuild/
util.py 11 fatal = lambda message: (_write_message('fatal error', message), sys.exit(1)) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
componentinfo.py 12 from llvmbuild.util import fatal, warning namespace
450 fatal("invalid component %r in %r: %s" % (
456 fatal("invalid component %r in %r: %s" % (
471 fatal("unable to load component %r in %r: %s" % (
main.py 8 from llvmbuild.util import fatal, note namespace
72 fatal("missing LLVMBuild.txt file at: %r" % (llvmbuild_path,))
120 fatal("found duplicate component %r (at %r and %r)" % (
126 fatal("project is not allowed to define 'all' component")
130 fatal("project is not allowed to define $ROOT component")
144 fatal("found cycle to %r after following: %s -> %s" % (
158 fatal("component %r has invalid reference %r (via %r)" % (
166 fatal("component %r has invalid reference %r (via %r)" % (
747 fatal("expected project to contain special %r component" % (
751 fatal("special component %r should be a LibraryGroup" %
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.h 55 bool fatal() const { return m_fatal; } function in class:blink::FINAL
63 TextDecoder(const WTF::TextEncoding&, bool fatal, bool ignoreBOM);
  /external/apache-http/src/org/apache/commons/logging/
Log.java 33 * <li>fatal (the most serious)</li>
98 * <p> Is fatal logging currently enabled? </p>
102 * when the log level is more than fatal. </p>
104 * @return true if fatal is enabled in the underlying logger.
234 * <p> Log a message with fatal log level. </p>
238 public void fatal(Object message); method in interface:Log
242 * <p> Log an error with fatal log level. </p>
247 public void fatal(Object message, Throwable t); method in interface:Log
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 65 public void fatal(Object message) { } method in class:NoOpLog
67 public void fatal(Object message, Throwable t) { } method in class:NoOpLog
84 * Fatal is never enabled.
Jdk14Logger.java 161 * @see org.apache.commons.logging.Log#fatal(Object)
163 public void fatal(Object message) { method in class:Jdk14Logger
173 * @see org.apache.commons.logging.Log#fatal(Object, Throwable)
175 public void fatal(Object message, Throwable exception) { method in class:Jdk14Logger
231 * Is fatal logging currently enabled?
SimpleLog.java 41 * Must be one of ("trace", "debug", "info", "warn", "error", or "fatal").
45 * Must be one of ("trace", "debug", "info", "warn", "error", or "fatal").
123 /** "Fatal" level logging. */
238 } else if("fatal".equalsIgnoreCase(lvl)) {
299 case SimpleLog.LOG_LEVEL_FATAL: buf.append("[FATAL] "); break;
527 * @see org.apache.commons.logging.Log#fatal(Object)
529 public final void fatal(Object message) { method in class:SimpleLog
543 * @see org.apache.commons.logging.Log#fatal(Object, Throwable)
545 public final void fatal(Object message, Throwable t) { method in class:SimpleLog
580 * <p> Are fatal messages currently enabled? </p
    [all...]
  /external/bison/src/
complain.c 209 ERROR_MESSAGE (&loc, _("fatal error"), message);
214 fatal (const char *message, ...)
216 ERROR_MESSAGE (NULL, _("fatal error"), message);
213 fatal (const char *message, ...) function
  /external/llvm/utils/lit/lit/
LitConfig.py 121 def fatal(self, message): member in class:LitConfig
122 self._write_message('fatal', message)
  /external/lldb/tools/lldb-perf/lib/
TestCase.cpp 175 bool fatal = false; local
218 fatal = true;
242 if (fatal)
  /bootable/recovery/minadbd/
adb.c 41 void fatal(const char *fmt, ...) function
132 if(p == 0) fatal("failed to allocate an apacket");
fdevent.c 47 static void fatal(const char *fn, const char *fmt, ...) function
57 #define FATAL(x...) fatal(__FUNCTION__, x)
413 FATAL("missing fde for fd %d\n", i);
431 FATAL("bogus negative fd (%d)\n", fde->fd);
437 FATAL("bogus huuuuge fd (%d)\n", fde->fd);
448 FATAL("could not expand fd_table to %d entries\n", fd_table_max);
459 FATAL("fd out of range (%d)\n", fde->fd);
463 FATAL("fd_table out of sync [%d]\n", fde->fd);
524 FATAL("fd %d out of range for fd_table \n", fd)
    [all...]
  /external/blktrace/btt/
btt_plot.py 82 def fatal(msg): function
83 """Generate fatal error message and exit"""
85 print >>sys.stderr, 'FATAL: %s' % msg
156 fatal('%s not found' % file)
199 fatal('%s not a valid command name' % prog)
211 fatal(__doc__)
222 fatal('Type %s not supported' % a)
230 fatal('Need type of data files to process - (-t <type>)')
391 fatal('Need data files to process')
  /external/chromium_org/net/websockets/
websocket_stream.cc 79 bool fatal) OVERRIDE;
281 bool fatal) {
286 fatal); local
  /external/chromium_org/third_party/libvpx/source/libvpx/
tools_common.c 63 void fatal(const char *fmt, ...) { function
64 LOG_ERROR("Fatal");
  /external/chromium_org/third_party/skia/third_party/lua/src/
luac.c 35 static void fatal(const char* message) function
144 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1));
168 if (!lua_checkstack(L,argc)) fatal("too many input files");
172 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1));
196 if (L==NULL) fatal("cannot create state: not enough memory");
200 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.logging_1.0.4.v201005080501.jar 
  /external/libvpx/libvpx/
tools_common.c 63 void fatal(const char *fmt, ...) { function
64 LOG_ERROR("Fatal");
  /external/blktrace/btreplay/
btrecord.c 185 static inline void fatal(const char *errstring, const int exitval, function
240 fatal(stream->file_name, ERR_SYSCALL, "Hdr write failed\n");
318 fatal(file_name, ERR_ARGS, "Unable to open\n");
352 fatal(NULL, ERR_ARGS, "No traces found for %s\n", devnm);
363 fatal(idir, ERR_ARGS, "Unable to open %s\n", idir);
400 fatal(idir, ERR_ARGS,
409 fatal(odir, ERR_ARGS,
462 fatal(NULL, ERR_ARGS, "Invalid command line\n");
474 fatal(NULL, ERR_ARGS, "Missing required input file name(s)\n");
496 fatal(iip->file_name, ERR_SYSCALL, "Read failed\n")
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_sess.c 432 int fatal = 0; local
446 fatal = 1;
541 fatal = 1;
575 if (fatal)
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 35 private static void fatal() throws CompileError { method in class:MemberResolver
36 throw new CompileError("fatal");
396 fatal(); method
537 fatal(); method

Completed in 1409 milliseconds

1 2