Lines Matching refs:items_written
102 glong items_read, items_written; in process() local
153 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, &items_written, &error); in process()
162 items_written != ucs4_len) in process()
166 print_ucs4 ("received: ", ucs4_result, items_written); in process()
178 ucs4_result = g_utf8_to_ucs4_fast (utf8, -1, &items_written); in process()
181 items_written != ucs4_len) in process()
185 print_ucs4 ("received: ", ucs4_result, items_written); in process()
189 utf8_result = g_ucs4_to_utf8 (ucs4_result, -1, &items_read, &items_written, &error); in process()
198 items_written != strlen (utf8)) in process()
254 if (!(utf16_from_utf8 = g_utf8_to_utf16 (utf8, -1, &items_read, &items_written, &error))) in process()
261 utf16_count (utf16_from_utf8) != items_written) in process()
267 if (!(utf16_from_ucs4 = g_ucs4_to_utf16 (ucs4, -1, &items_read, &items_written, &error))) in process()
274 utf16_count (utf16_from_ucs4) != items_written) in process()
287 … if (!(utf8_result = g_utf16_to_utf8 (utf16_from_utf8, -1, &items_read, &items_written, &error))) in process()
294 items_written != strlen (utf8)) in process()
300 … if (!(ucs4_result = g_utf16_to_ucs4 (utf16_from_ucs4, -1, &items_read, &items_written, &error))) in process()
307 items_written != ucs4_len) in process()