Lines Matching refs:src
338 * @src - source string
348 cifs_strndup_from_utf16(const char *src, const int maxlen,
355 len = cifs_utf16_bytes((__le16 *) src, maxlen, codepage);
360 cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage,
363 dst = kstrndup(src, maxlen, GFP_KERNEL);
606 * @src - source string
617 cifs_strndup_to_utf16(const char *src, const int maxlen, int *utf16_len,
623 len = cifs_local_to_utf16_bytes(src, maxlen, cp);
630 cifsConvertToUTF16(dst, src, strlen(src), cp, remap);