Lines Matching refs:out_real
17 char *out_real, size_t q_real, in test_string_check_buf() argument
21 KUNIT_EXPECT_MEMEQ_MSG(test, out_test, out_real, q_test, in test_string_check_buf()
61 char *out_real = kunit_kzalloc(test, q_real, GFP_KERNEL); in test_string_unescape() local
66 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, out_real); in test_string_unescape()
88 memcpy(out_real, in, p); in test_string_unescape()
90 q_real = string_unescape_any_inplace(out_real); in test_string_unescape()
92 q_real = string_unescape_inplace(out_real, flags); in test_string_unescape()
94 q_real = string_unescape_any(in, out_real, q_real); in test_string_unescape()
96 q_real = string_unescape(in, out_real, q_real, flags); in test_string_unescape()
99 test_string_check_buf(test, name, flags, in, p - 1, out_real, q_real, in test_string_unescape()
411 char *out_real = kunit_kzalloc(test, out_size, GFP_KERNEL); in test_string_escape() local
417 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, out_real); in test_string_escape()
452 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape()
454 test_string_check_buf(test, name, flags, in, p, out_real, q_real, out_test, in test_string_escape()