Home
last modified time | relevance | path

Searched refs:expected (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/edify/
Dmain.c26 int expect(const char* expr_str, const char* expected, int* errors) { in expect() argument
48 if (result == NULL && expected != NULL) { in expect()
54 if (result == NULL && expected == NULL) { in expect()
58 if (strcmp(result, expected) != 0) { in expect()
60 expr_str, expected, result); in expect()
/bootable/recovery/updater/
Dblockimg.c375 static int VerifyBlocks(const char *expected, const uint8_t *buffer, in VerifyBlocks() argument
381 if (!expected || !buffer) { in VerifyBlocks()
389 rc = strcmp(expected, hexdigest); in VerifyBlocks()
393 expected, hexdigest); in VerifyBlocks()