Home
last modified time | relevance | path

Searched refs:kNoCause (Results 1 – 5 of 5) sorted by relevance

/bootable/recovery/tests/unit/
Dupdater_test.cpp164 const std::string& result, CauseCode cause_code = kNoCause) { in RunBlockImageUpdate()
184 int received_cause_code = kNoCause; in RunBlockImageUpdate()
240 kNoCause); in TEST_F()
244 kNoCause); in TEST_F()
276 expect("t", cmd, kNoCause); in TEST_F()
281 expect("t", cmd, kNoCause); in TEST_F()
286 expect("t", cmd, kNoCause); in TEST_F()
291 expect("", cmd, kNoCause); in TEST_F()
318 expect("tardis", script1, kNoCause); in TEST_F()
322 expect("magic", script2, kNoCause); in TEST_F()
[all …]
/bootable/recovery/otautil/include/otautil/
Derror_code.h34 kNoCause = -1, enumerator
/bootable/recovery/updater/
Dupdater.cpp85 if (result_.empty() && state.cause_code != kNoCause) { in RunUpdate()
152 if (state->cause_code != kNoCause) { in ParseAndReportErrorCode()
Dblockimg.cpp80 static CauseCode failure_type = kNoCause;
1863 if (cmd_type == Command::Type::COMPUTE_HASH_TREE && failure_type == kNoCause) { in PerformBlockImageUpdate()
1973 if (failure_type != kNoCause && state->cause_code == kNoCause) { in PerformBlockImageUpdate()
/bootable/recovery/edify/
Dexpr.cpp425 : script(script), updater(interface), error_code(kNoError), cause_code(kNoCause) {} in State()