Lines Matching defs:src
17 * @src: Source string, argument to strscpy_pad()
21 * @chars: Number of characters from the src string expected to be
29 static int __init tc(char *src, int count, int expected,
42 if (!src) {
60 written = strscpy_pad(buf, src, count);
67 if (strncmp(buf, src, count - 1) != 0) {
78 if (buf[i] != src[i]) {
79 pr_err("buf[i]==%c != src[i]==%c\n", buf[i], src[i]);
125 /* tc(src, count, expected, chars, terminator, pad) */