HomeSort by relevance Sort by last modified time
    Searched defs:fatal (Results 51 - 75 of 301) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLog.java 32 * JCL's FATAL level is mapped to ERROR. All other levels map one to one.
223 public void fatal(Object message) { method in class:SLF4JLog
236 public void fatal(Object message, Throwable t) { method in class:SLF4JLog
  /external/tensorflow/tensorflow/python/platform/
tf_logging.py 30 from logging import FATAL
109 @tf_export('logging.fatal')
110 def fatal(msg, *args, **kwargs): function
111 _get_logger().fatal(msg, *args, **kwargs)
130 FATAL: 'FATAL',
295 'FATAL',
301 'fatal',
317 tf_export('logging.FATAL').export_constant(__name__, 'FATAL')
    [all...]
  /external/tensorflow/tensorflow/python/training/
tensorboard_logging.py 42 FATAL = 'FATAL'
63 FATAL: event_pb2.LogMessage.FATAL,
72 FATAL: logging.FATAL
126 tensorboard_logging.{DEBUG, INFO, WARN, ERROR, FATAL}.
166 def fatal(message, *args): function
167 log(FATAL, message, *args)
  /external/vboot_reference/utility/
bmpblk_font.c 33 #define fatal(args...) do { error(args); exit(1); } while(0) macro
158 fatal("Unable to open %s: %s\n", outfile, strerror(errno));
  /toolchain/binutils/binutils-2.27/gold/
errors.cc 76 // Report a fatal error.
79 Errors::fatal(const char* format, va_list args) function in class:gold::Errors
81 fprintf(stderr, _("%s: fatal error: "), this->program_name_);
92 fprintf(stderr, _("%s: fatal error: "), this->program_name_);
223 // Report a fatal error.
230 parameters->errors()->fatal(format, args);
  /external/apache-http/src/org/apache/commons/logging/impl/
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?
  /external/honggfuzz/examples/libpng/
persistent-png.c 27 void fatal(const char* s, ...) function
79 fatal("png_create_read_struct");
85 fatal("png_create_info_struct()");
  /external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/
InvokeJCLTest.java 62 log.fatal(null);
63 log.fatal("fatal message");
80 log.fatal(null, e);
81 log.fatal("fatal message", e);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
Log.java 100 public void fatal(Object message) { method in class:Log
104 public void fatal(Object message, Throwable t) { method in class:Log
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
ErrorsTest.java 57 public void fatal() { method in class:ErrorsTest
  /toolchain/binutils/binutils-2.27/ld/
ldmisc.c 47 %F error is fatal
70 bfd_boolean fatal = FALSE; local
214 /* Error is fatal. */
215 fatal = TRUE;
440 if (fatal)
  /device/linaro/bootloader/edk2/AppPkg/Applications/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/guice/extensions/persist/lib/
commons-logging-1.0.4.jar 
  /external/guice/extensions/struts2/lib/
commons-logging-1.0.4.jar 
  /external/guice/lib/build/
commons-logging-1.0.4.jar 
  /external/libvpx/libvpx/
tools_common.c 62 void fatal(const char *fmt, ...) { function
63 LOG_ERROR("Fatal");
280 fatal("Unsupported image conversion");
287 default: fatal("Unsupported image conversion"); break;
316 fatal("Unsupported image conversion");
323 default: fatal("Unsupported image conversion"); break;
357 fatal("Unsupported image conversion");
364 default: fatal("Unsupported image conversion"); break;
392 fatal("Unsupported image conversion");
399 default: fatal("Unsupported image conversion"); break
    [all...]
  /external/python/cpython2/Mac/BuildScript/
build-installer.py 534 def fatal(msg): function
536 A fatal error, bail out.
538 sys.stderr.write('FATAL: ')
581 fatal("Framework configuration file not found: %s" % configfile)
588 fatal("Version variable %s not found in framework configuration file: %s"
597 fatal("This script must be run with Python 2.4 or later")
600 fatal("This script should be run on a Mac OS X 10.4 (or later) system")
603 fatal("This script should be run on a Mac OS X 10.4 (or later) system")
606 fatal("Please install the latest version of Xcode and the %s SDK"%(
626 fatal("Please install a link to a current %s %s as %s so
    [all...]
  /external/python/cpython3/Mac/BuildScript/
build-installer.py 506 def fatal(msg): function
508 A fatal error, bail out.
510 sys.stderr.write('FATAL: ')
553 fatal("Framework configuration file not found: %s" % configfile)
560 fatal("Version variable %s not found in framework configuration file: %s"
569 fatal("This script must be run with Python 2.4 or later")
572 fatal("This script should be run on a Mac OS X 10.4 (or later) system")
575 fatal("This script should be run on a Mac OS X 10.4 (or later) system")
578 fatal("Please install the latest version of Xcode and the %s SDK"%(
598 fatal("Please install a link to a current %s %s as %s so
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-over-slf4j-1.4.2.jar 
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Category.java 37 * mapped to their SLF4J equivalents. Log4j's <code>fatal()</code> printing
38 * method is mapped to SLF4J's <code>error()</code> method with a FATAL marker.
53 private static Marker FATAL_MARKER = MarkerFactory.getMarker("FATAL");
164 * SLF4J equivalent, except for FATAL which is mapped as ERROR.
278 public void fatal(Object message) { method in class:Category
284 * SLF4J. In addition, the call is marked with a marker named "FATAL".
286 public void fatal(Object message, Throwable t) { method in class:Category
  /external/syslinux/com32/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));
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.0.4/
commons-logging-1.0.4.jar 
  /system/core/debuggerd/
crash_dump.cpp 202 PLOG(FATAL) << "failed to set signal mask";
233 LOG(FATAL) << "wrong number of args: " << argc << " (expected 4)";
237 LOG(FATAL) << "invalid target tid: " << argv[1];
241 LOG(FATAL) << "invalid pseudothread tid: " << argv[2];
246 LOG(FATAL) << "invalid requested dump type: " << argv[3];
256 PLOG(FATAL) << "failed to read target ucontext";
258 LOG(FATAL) << "read " << rc << " bytes when reading target crash information, expected "
264 LOG(FATAL) << "version mismatch, expected 1, received " << crash_info->version;
278 PLOG(FATAL) << "failed to waitpid";
282 LOG(FATAL) << "traced process exited with status " << WEXITSTATUS(status)
414 bool fatal = thread == g_target_thread; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
bucomm.c 64 /* Issue a non fatal error message. FILENAME, or if NULL then BFD,
130 fatal (const char *format, ...)
164 fatal (_("can't set BFD default target to `%s': %s"),
556 /* Parse a string into a VMA, with a fatal error if it can't be
568 fatal (_("%s: bad number: %s"), arg, s);
574 exist, or if it is not a real file, then a suitable non-fatal
128 fatal (const char *format, ...) function
  /prebuilts/tools/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/
jcl-over-slf4j-1.6.2.jar 

Completed in 752 milliseconds

1 23 4 5 6 7 8 91011>>