Lines Matching refs:src
336 * @src - source string
346 cifs_strndup_from_utf16(const char *src, const int maxlen,
353 len = cifs_utf16_bytes((__le16 *) src, maxlen, codepage);
358 cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage,
361 dst = kstrndup(src, maxlen, GFP_KERNEL);
604 * @src - source string
615 cifs_strndup_to_utf16(const char *src, const int maxlen, int *utf16_len,
621 len = cifs_local_to_utf16_bytes(src, maxlen, cp);
628 cifsConvertToUTF16(dst, src, strlen(src), cp, remap);