Home | History | Annotate | Download | only in support

Lines Matching defs:Checkpoint

8 struct Checkpoint {
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg)
22 s << "NO CHECKPOINT\n";
25 s << file << ":" << line << " " << func << ": Checkpoint";
32 inline Checkpoint& globalCheckpoint() {
33 static Checkpoint C;
38 globalCheckpoint() = Checkpoint();
47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg);