Home
last modified time | relevance | path

Searched refs:cause_code (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/updater/
Dupdater.cpp205 if (state.cause_code != kNoCause) { in main()
206 fprintf(cmd_pipe, "log cause: %d\n", state.cause_code); in main()
207 if (state.cause_code == kPatchApplicationFailure) { in main()
/bootable/recovery/edify/include/edify/
Dexpr.h51 CauseCode cause_code; member
151 Value* ErrorAbort(State* state, CauseCode cause_code, const char* format, ...)
/bootable/recovery/edify/
Dexpr.cpp412 Value* ErrorAbort(State* state, CauseCode cause_code, const char* format, ...) { in ErrorAbort() argument
420 state->cause_code = cause_code; in ErrorAbort()
425 : script(script), cookie(cookie), error_code(kNoError), cause_code(kNoCause) {} in State()
/bootable/recovery/tests/component/
Dupdater_test.cpp53 static void expect(const char* expected, const char* expr_str, CauseCode cause_code, in expect() argument
76 ASSERT_EQ(cause_code, state.cause_code); in expect()