/external/gtest/test/ |
gtest_output_test_.cc | 65 // Tests catching fatal failures. 72 // This function calls a test subroutine, catches the fatal failure it 75 // Calls a subrountine that yields a fatal failure. 78 // Catches the fatal failure and aborts the test. 94 // Tests catching a fatal failure in a subroutine. 101 // Tests catching a fatal failure in a nested subroutine. 105 // Calls a subrountine that yields a fatal failure. 108 // Catches the fatal failure and aborts the test. 247 // Tests non-fatal failures in the fixture constructor. 272 // Tests fatal failures in the fixture constructor [all...] |
gtest_output_test_golden_lin.txt | 288 Expected: 1 non-fatal failure 294 Expected: 1 non-fatal failure 296 gtest_output_test_.cc:#: Non-fatal failure: 298 Expected non-fatal failure 1. 300 gtest_output_test_.cc:#: Non-fatal failure: 302 Expected non-fatal failure 2. 308 Expected: 1 non-fatal failure 310 gtest_output_test_.cc:#: Fatal failure: 312 Expected fatal failure. 318 Expected: 1 non-fatal failur [all...] |
gtest_output_test_golden_win.txt | 271 gtest.cc:#: error: Expected: 1 non-fatal failure 276 gtest.cc:#: error: Expected: 1 non-fatal failure 278 gtest_output_test_.cc:#: Non-fatal failure: 280 Expected non-fatal failure 1. 282 gtest_output_test_.cc:#: Non-fatal failure: 284 Expected non-fatal failure 2. 289 gtest.cc:#: error: Expected: 1 non-fatal failure 291 gtest_output_test_.cc:#: Fatal failure: 293 Expected fatal failure. 298 gtest.cc:#: error: Expected: 1 non-fatal failur [all...] |
gtest_environment_test.cc | 54 // generate a non-fatal failure, generate a fatal failure, or 61 ADD_FAILURE() << "Expected non-fatal failure in global set-up."; 64 FAIL() << "Expected fatal failure in global set-up."; 71 // Generates a non-fatal failure. 74 ADD_FAILURE() << "Expected non-fatal failure in global tear-down."; 152 // set-up generates no fatal failure. 155 "and the global tear-down should generate a non-fatal failure."); 158 "fatal failure."); 163 // generates a fatal failure [all...] |
/external/oprofile/libutil/ |
op_fileio.h | 39 * Failure to open is fatal. 46 * @param fatal non-zero if any error must be fatal 48 * Reads an ASCII integer from the given file. If an error occur and fatal is 51 u32 op_read_int_from_file(char const * filename, int fatal); 57 * Closes a file pointer. A non-fatal 70 * Failure is fatal. 80 * Failure is fatal. 92 * Failure is fatal. 104 * Failure is fatal [all...] |
op_popt.h | 32 * options. All error are fatal.
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
messages.sgml | 45 GLib log levels that are considered fatal by default. 63 @log_level: the log level of the message (including the fatal and recursion 92 If the log level has been set as fatal, the abort() 106 If the log level has been set as fatal, the abort() 131 You can make warnings fatal at runtime by setting the %G_DEBUG environment 143 warnings exit the program, then use g_critical() for fatal errors, for 148 You can also make critical warnings fatal at runtime by setting 159 Error messages are always fatal, resulting in a call to 181 To handle fatal and recursive messages the @log_levels parameter 186 Note that since the #G_LOG_LEVEL_ERROR log level is always fatal, if [all...] |
/cts/tools/dasm/src/java_cup/ |
internal_error.java | 17 System.err.println("JavaCUP Fatal Internal Error Detected");
|
/external/e2fsprogs/e2fsck/ |
badblocks.c | 46 goto fatal; 58 goto fatal; 72 goto fatal; 83 goto fatal; 94 goto fatal; 105 goto fatal; 111 fatal:
|
/external/ppp/pppd/plugins/pppoatm/ |
pppoatm.c | 105 fatal("No vpi.vci specified"); 119 fatal("ioctl(ATM_SETBACKEND): %m"); 143 fatal("failed to create socket: %m"); 149 fatal("Can't parse QoS: \"%s\""); 154 fatal("setsockopt(SO_ATMQOS): %m"); 158 fatal("connect(%s): %m", devnam); 183 fatal("Couldn't create IP socket: %m"); 187 fatal("ioctl(SIOCSIFMTU): %m"); 205 fatal("Kernel doesn't support ppp_generic - " 208 fatal("No PPPoATM support on this OS") [all...] |
atmres.h | 28 #define FATAL -1 /* must be -1 */
|
text2atm.c | 28 if (!*text) return FATAL; /* empty or ends with a dot */ 44 if (!(flags & T2A_WILDCARD)) return FATAL; /* not allowed */ 49 if (!(flags & T2A_UNSPEC)) return FATAL; /* not allowed */ 54 if (*text++ != '.') return FATAL; /* dot required */ 66 if (part[0] == ATM_VPI_UNSPEC) return FATAL; /* bad */ 89 else if (!dot) return FATAL; /* two dots in a row */ 96 if (!dot || *text == '0') return FATAL; 128 if (!dot) return FATAL; /* two dots in a row */ 131 if (!dot) return FATAL; 144 if (len < offset) return FATAL; [all...] |
/external/qemu/distrib/sdl-1.2.12/src/ |
SDL_fatal.c | 24 /* General fatal signal handling code for SDL */ 33 /* This installs some signal handlers for the more common fatal signals, 61 /* Set a handler for any fatal signal not already handled */ 96 /* Remove a handler for any fatal signal handled */
|
SDL_fatal.h | 24 /* General fatal signal handling code for SDL */
|
/external/gtest/ |
README.android | 9 of assertions, user-defined assertions, death tests, fatal and 10 non-fatal failures, value- and type-parameterized tests, various
|
/external/oprofile/daemon/ |
oprofiled.h | 32 * a fatal error. 45 /** return the int in the given oprofilefs file, error is fatal if !is_fatal */
|
opd_pipe.h | 20 * is a fatal error.
|
/external/opencore/oscl/oscl/osclerror/src/ |
oscl_error_imp_fatalerror.h | 32 \brief Implementation File for Leave using system fatal error. 38 // Implementation File for Leave using system fatal error. 40 //Fatal error implementation for compilers without C++ exceptions. 42 //just cause fatal program errors. There is no way to catch or trap 48 //Leave just calls a system fatal error.
|
/frameworks/base/tools/aapt/ |
SourcePos.cpp | 16 bool fatal; member in struct:ErrorPos 20 ErrorPos(const String8& file, int line, const String8& error, bool fatal); 32 :line(-1), fatal(false) 40 fatal(that.fatal) 48 fatal(fat) 89 const char* type = fatal ? "error:" : "warning:";
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
NoOpLog.java | 60 public void fatal(Object message) { } method in class:NoOpLog 62 public void fatal(Object message, Throwable t) { } method in class:NoOpLog 79 * Fatal is never enabled.
|
/dalvik/dx/src/com/android/dx/util/ |
Warning.java | 20 * Exception which is meant to indicate a non-fatal warning.
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_argchk.h | 14 /* fatal type of error */
|
/external/iproute2/man/man8/ |
routel.8 | 29 This manual page was written by Andreas Henriksson <andreas@fatal.se>, for the Debian GNU/Linux system.
|
/external/oprofile/libop/ |
op_parse_event.h | 36 * A fatal error occur if number of events is greater than max_events.
|
/external/mtpd/ |
mtpd.c | 118 log_print(FATAL, "Cannot get control socket"); 128 log_print(FATAL, "Cannot get argument length"); 141 log_print(FATAL, "Cannot get argument value"); 156 log_print(FATAL, "Cannot get L2TP secret from keystore"); 186 log_print(FATAL, "Pipe() %s", strerror(errno)); 208 log_print(FATAL, "Poll() %s", strerror(errno)); 285 log_print(FATAL, "Getaddrinfo() %s", (error == EAI_SYSTEM) ? 304 log_print(FATAL, "Connect() %s", strerror(errno)); 324 log_print(FATAL, "Fork() %s", strerror(errno)); 359 log_print(FATAL, "Exec() %s", strerror(errno)) [all...] |