Lines Matching +full:language +full:- +full:id

1 // SPDX-License-Identifier: LGPL-2.1+
5 * Ported to U-Boot by: Thomas Smits <ts.smits@gmail.com> and
25 * BUT it currently rejects legit 4-byte UTF-8 code points, in utf8_to_utf16le()
31 * 2-byte sequence: in utf8_to_utf16le()
44 * 3-byte sequence (most CJKV characters): in utf8_to_utf16le()
67 * 4-byte sequence (surrogate pairs, currently rare): in utf8_to_utf16le()
79 len--; in utf8_to_utf16le()
83 return -1; in utf8_to_utf16le()
88 * usb_gadget_get_string - fill out a string descriptor
89 * @table: of c strings encoded using UTF-8
90 * @id: string id, from low byte of wValue in get string descriptor
93 * Finds the UTF-8 string matching the ID, and converts it into a
94 * string descriptor in utf16-le.
99 * using this routine after choosing which set of UTF-8 strings to use.
100 * Note that US-ASCII is a strict subset of UTF-8; any string bytes with
101 * the eighth bit set will be multibyte UTF-8 characters, not ISO-8859/1
105 usb_gadget_get_string(struct usb_gadget_strings *table, int id, u8 *buf) in usb_gadget_get_string() argument
111 return -EINVAL; in usb_gadget_get_string()
113 /* descriptor 0 has the language id */ in usb_gadget_get_string()
114 if (id == 0) { in usb_gadget_get_string()
117 buf[2] = (u8) table->language; in usb_gadget_get_string()
118 buf[3] = (u8) (table->language >> 8); in usb_gadget_get_string()
121 for (s = table->strings; s && s->s; s++) in usb_gadget_get_string()
122 if (s->id == id) in usb_gadget_get_string()
126 if (!s || !s->s) in usb_gadget_get_string()
127 return -EINVAL; in usb_gadget_get_string()
129 /* string descriptors have length, tag, then UTF16-LE text */ in usb_gadget_get_string()
130 len = min((size_t) 126, strlen(s->s)); in usb_gadget_get_string()
132 len = utf8_to_utf16le(s->s, (__le16 *)&buf[2], len); in usb_gadget_get_string()
134 return -EINVAL; in usb_gadget_get_string()