Lines Matching refs:out
346 We can test this code by *faking out* the underlying EEPROM:
485 sha1sum(in, out); \
486 KUNIT_EXPECT_STREQ_MSG(test, out, want, "sha1sum(%s)", in);
488 char out[40];
505 char out[40];
523 sha1sum(cases[i].str, out);
524 KUNIT_EXPECT_STREQ_MSG(test, out, cases[i].sha1,
582 char out[40];
585 sha1sum(test_param->str, out);
586 KUNIT_EXPECT_STREQ_MSG(test, out, test_param->sha1,
661 ``kunit_add_action`` can fail if, for example, the system is out of memory.