Lines Matching refs:out

27 	const char *out;  member
34 .out = "\f\\ \n\r\t\v",
39 .out = " \001\00387\0064\005 \\8aH?7",
44 .out = "\\xv\n,\ro2",
49 .out = "\\h\\\"\a\e\\",
78 s = strings[i].out; in test_string_unescape()
79 len = strlen(strings[i].out); in test_string_unescape()
104 const char *out; member
118 .out = "\\f\\ \\n\\r\\t\\v",
121 .out = "\\f\\134\\040\\n\\r\\t\\v",
124 .out = "\\f\\x5c\\x20\\n\\r\\t\\v",
132 .out = "\\\\h\\\\\\\"\\a\\e\\\\",
135 .out = "\\\\\\150\\\\\\\"\\a\\e\\\\",
138 .out = "\\\\\\x68\\\\\\\"\\a\\e\\\\",
146 .out = "\eb \\C\007\"\x90\\r]",
149 .out = "\\eb \\\\C\\a\\\"\x90\r]",
152 .out = "\\eb \\\\C\\a\\\"\x90\\r]",
155 .out = "\\033\\142\\040\\134\\103\\007\\042\\220\\015\\135",
158 .out = "\\033\\142\\040\\134\\103\\007\\042\\220\\r\\135",
161 .out = "\\e\\142\\040\\\\\\103\\a\\\"\\220\\015\\135",
164 .out = "\\e\\142\\040\\\\\\103\\a\\\"\\220\\r\\135",
167 .out = "\eb \\C\007\"\x90\r]",
170 .out = "\eb \\C\007\"\x90\\r]",
173 .out = "\\eb \\C\\a\"\x90\r]",
176 .out = "\\eb \\C\\a\"\x90\\r]",
179 .out = "\\033b \\C\\007\"\\220\\015]",
182 .out = "\\033b \\C\\007\"\\220\\r]",
185 .out = "\\eb \\C\\a\"\\220\\r]",
189 .out = "\\x1bb \\C\\x07\"\\x90\\x0d]",
197 .out = "\007 \eb\"\\220\\317\r",
200 .out = "\007 \eb\"\\x90\\xcf\r",
203 .out = "\007 \eb\"\x90\xCF\r",
216 .out = "\f\\134\\040\n\\015\\011\v",
219 .out = "\f\\x5c\\x20\n\\x0d\\x09\v",
222 .out = "\f\\134\\040\n\\015\\011\v",
225 .out = "\\014\\134\\040\\012\\015\\011\\013",
228 .out = "\\x0c\\x5c\\x20\\x0a\\x0d\\x09\\x0b",
231 .out = "\f\\134\\040\n\\015\\011\v",
234 .out = "\f\\x5c\\x20\n\\x0d\\x09\v",
242 .out = "\\134h\\134\"\a\\317\e\\134",
245 .out = "\\134h\\134\"\a\\317\e\\134",
248 .out = "\\134h\\134\"\\007\\317\\033\\134",
251 .out = "\\134h\\134\"\a\\317\e\\134",
259 .out = "\e\\142\\040\\134C\007\"\x90\\015]",
267 .out = "\007 \eb\"\x90\xCF\r",
270 .out = "\007 \eb\"\x90\xCF\r",
273 .out = "\007 \eb\"\x90\xCF\r",
276 .out = "\007 \eb\"\x90\xCF\r",
279 .out = "\007 \eb\"\x90\\317\r",
282 .out = "\007 \eb\"\x90\\317\r",
285 .out = "\007 \eb\"\x90\\317\r",
288 .out = "\007 \eb\"\x90\\317\r",
291 .out = "\007 \eb\"\x90\\xcf\r",
294 .out = "\007 \eb\"\x90\\xcf\r",
297 .out = "\007 \eb\"\x90\\xcf\r",
300 .out = "\007 \eb\"\x90\\xcf\r",
308 .out = "\007 \eb\"\x90\xCF\r",
311 .out = "\007 \eb\"\x90\xCF\\r",
314 .out = "\007 \eb\"\x90\xCF\r",
317 .out = "\007 \eb\"\x90\xCF\\r",
320 .out = "\007 \eb\"\x90\\317\\015",
323 .out = "\007 \eb\"\x90\\317\\r",
326 .out = "\007 \eb\"\x90\\317\\015",
329 .out = "\007 \eb\"\x90\\317\r",
332 .out = "\007 \eb\"\x90\\xcf\\x0d",
335 .out = "\007 \eb\"\x90\\xcf\\r",
338 .out = "\007 \eb\"\x90\\xcf\\x0d",
341 .out = "\007 \eb\"\x90\\xcf\\r",
353 .out = "ABCDEFGH1234567890TEST",
357 .out = "ABCDEFGH1234567890TEST",
364 .out = "abcdefgh1234567890test",
368 .out = "abcdefgh1234567890test",
388 for (i = 0; i < TEST_STRING_2_MAX_S1 && s1->out; i++, s1++) in test_string_find_match()
390 return s1->out; in test_string_find_match()
421 const char *out; in test_string_escape() local
437 out = test_string_find_match(s2, flags); in test_string_escape()
438 if (!out) in test_string_escape()
447 len = strlen(out); in test_string_escape()
448 memcpy(&out_test[q_test], out, len); in test_string_escape()
579 KUNIT_EXPECT_STREQ(test, dst, strings_upper[i].out); in test_upper_lower()
591 KUNIT_EXPECT_STREQ(test, dst, strings_lower[i].out); in test_upper_lower()