Lines Matching full:string
18 * smb_utf16_bytes() - how long will a string be after conversion?
19 * @from: pointer to input string
20 * @maxbytes: don't go past this many bytes of input string
23 * Walk a utf16le string and return the number of bytes that the string will
27 * Return: string length after conversion
64 * Return: string length after conversion
135 * smb_from_utf16() - convert utf16le string to local charset
143 * Convert a little-endian utf16le string (as sent by the server) to a string
147 * string is always properly null terminated and fits in the destination
148 * buffer. Returns the length of the destination string in bytes (including
156 * Return: string length after conversion
196 /* properly null-terminate string */ in smb_from_utf16()
204 * smb_strtoUTF16() - Convert character string to unicode string
210 * Return: string length after conversion
256 * smb_strndup_from_utf16() - copy a string from wire format to the local
258 * @src: source string
259 * @maxlen: don't walk past this many bytes in the source string
260 * @is_unicode: is this a unicode string?
263 * Take a string given by the server, convert it to the local codepage and
264 * put it in a new buffer. Returns a pointer to the new string or NULL on
267 * Return: destination string buffer or error ptr
301 * Convert 16 bit Unicode pathname to wire format from string in current code
303 * only legal in POSIX-like OS (if they are present in the string). Path
307 * smbConvertToUTF16() - convert string from local charset to utf16
314 * Convert 16 bit Unicode pathname to wire format from string in current code
316 * only legal in POSIX-like OS (if they are present in the string). Path
376 * character may take more than one byte in the source string, in smbConvertToUTF16()
377 * but will take exactly two bytes in the target string in smbConvertToUTF16()