Lines Matching full:string

17  * smb_utf16_bytes() - how long will a string be after conversion?
18 * @from: pointer to input string
19 * @maxbytes: don't go past this many bytes of input string
22 * Walk a utf16le string and return the number of bytes that the string will
26 * Return: string length after conversion
63 * Return: string length after conversion
116 * smb_from_utf16() - convert utf16le string to local charset
124 * Convert a little-endian utf16le string (as sent by the server) to a string
128 * string is always properly null terminated and fits in the destination
129 * buffer. Returns the length of the destination string in bytes (including
137 * Return: string length after conversion
177 /* properly null-terminate string */ in smb_from_utf16()
185 * smb_strtoUTF16() - Convert character string to unicode string
191 * Return: string length after conversion
237 * smb_strndup_from_utf16() - copy a string from wire format to the local
239 * @src: source string
240 * @maxlen: don't walk past this many bytes in the source string
241 * @is_unicode: is this a unicode string?
244 * Take a string given by the server, convert it to the local codepage and
245 * put it in a new buffer. Returns a pointer to the new string or NULL on
248 * Return: destination string buffer or error ptr
282 * Convert 16 bit Unicode pathname to wire format from string in current code
284 * only legal in POSIX-like OS (if they are present in the string). Path
288 * smbConvertToUTF16() - convert string from local charset to utf16
295 * Convert 16 bit Unicode pathname to wire format from string in current code
297 * only legal in POSIX-like OS (if they are present in the string). Path
357 * character may take more than one byte in the source string, in smbConvertToUTF16()
358 * but will take exactly two bytes in the target string in smbConvertToUTF16()