Searched refs:V8_Fatal (Results 1 – 6 of 6) sorted by relevance
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
D | checks.h | 35 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...); 42 V8_Fatal(__FILE__, __LINE__, "%s", (msg)) 44 V8_Fatal(__FILE__, __LINE__, "unimplemented code") 46 V8_Fatal(__FILE__, __LINE__, "unreachable code") 49 V8_Fatal("", 0, "%s", (msg)) 51 V8_Fatal("", 0, "unimplemented code") 62 V8_Fatal(file, line, "CHECK(%s) failed", source); in CheckHelper() 77 V8_Fatal(file, line, in CheckEqualsHelper() 94 V8_Fatal(file, line, in CheckEqualsHelper() 115 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i", in CheckNonEqualsHelper() [all …]
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | platform.cc | 21 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), "%s", reason.c_str()); in Fatal() 23 V8_Fatal("%s", reason.c_str()); in Fatal() 34 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), in operator ()() 37 V8_Fatal("Oilpan: Out of memory"); in operator ()()
|
D | logging.cc | 19 V8_Fatal(loc.FileName(), static_cast<int>(loc.Line()), "Check failed: %s.", in FatalImpl() 22 V8_Fatal("Check failed: %s.", message); in FatalImpl() 24 V8_Fatal("ignored"); in FatalImpl()
|
/third_party/node/deps/v8/src/base/ |
D | logging.cc | 57 V8_Fatal(file, line, "Debug check failed: %s.", message); in DefaultDcheckHandler() 60 V8_Fatal("Debug check failed: %s.", message); in DefaultDcheckHandler() 138 void V8_Fatal(const char* file, int line, const char* format, ...) { function 140 void V8_Fatal(const char* format, ...) {
|
D | logging.h | 26 void V8_Fatal(const char* file, int line, const char* format, ...); 27 #define FATAL(...) V8_Fatal(__FILE__, __LINE__, __VA_ARGS__) 31 void V8_Fatal(const char* format, ...); 36 #define FATAL(...) V8_Fatal(__VA_ARGS__) 43 FATAL_HELPER(__VA_ARGS__, V8_Fatal, V8_Fatal, V8_Fatal, V8_Fatal, V8_Fatal, \ 44 V8_Fatal, FATAL_DISCARD_ARG) \
|
/third_party/node/deps/v8/tools/ |
D | gdbinit | 164 # stack looking for V8_Dcheck / V8_Fatal / OS::DebugBreak frame and moves the 188 if frame.name() is not None and frame.name().startswith('V8_Fatal'):
|