Lines Matching refs:str
480 const char __user *str; in copy_strings() local
485 str = get_user_arg_ptr(argv, argc); in copy_strings()
486 if (IS_ERR(str)) in copy_strings()
489 len = strnlen_user(str, MAX_ARG_STRLEN); in copy_strings()
499 str += len; in copy_strings()
521 str -= bytes_to_copy; in copy_strings()
543 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings()
1711 static void cn_escape(char *str) in cn_escape() argument
1713 for (; *str; str++) in cn_escape()
1714 if (*str == '/') in cn_escape()
1715 *str = '!'; in cn_escape()